android:DrawableRightを使用して、ボタンとTextViewでVectorDrawableを使用することは可能ですか?


120

TextViewまたはImageViewでVectorDrawableアセットを使用すると、「android:DrawableRight」/「android:DrawableEnd」/「android:DrawableStart」/「android:DrawableLeft」を使用すると、ランタイムクラッシュが発生します。

アプリは警告なしで問題なくコンパイルされます。

使ってます

  • Gradle 1.5
  • サポートライブラリ23.2( 'com.android.support:appcompat-v7:23.2.0')

私が見つけたのは、このようにクラッシュすることなく、プログラムによってJavaでSVGを割り当てることができるということです。

TextView tv = (TextView) findViewById(R.id.textView);
tv.setCompoundDrawablesWithIntrinsicBounds(null,null, getResources().getDrawable(R.drawable.ic_accessible_white_36px),null);

(これは23.2のサポートライブラリのバグだと思います。)

しかし、SVGアセットにdrawableRightなどを使用することは可能ですか?

これが私のレイアウトです

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context="au.com.angryitguy.testsvg.MainActivity">


<TextView
    android:id="@+id/textView"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:drawableRight="@drawable/ic_accessible_white_36px"
    android:background="@color/colorPrimary"
    android:textColor="#FFFFFF"
    android:textSize="22sp"
    android:text="Hello World!"/>
</RelativeLayout>

これが私の活動です

package au.com.angryitguy.testsvg;

import android.content.Intent;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;

public class MainActivity extends AppCompatActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        }
    }

これは、Googleのマテリアルデザインサイトからの未変更のVectorDrawableアセットです。

<vector android:height="24dp" android:viewportHeight="24.0"
    android:viewportWidth="24.0" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
    <path android:fillColor="#FFFFFF" android:pathData="M12,4m-2,0a2,2 0,1 1,4 0a2,2 0,1 1,-4 0"/>
    <path android:fillColor="#FFFFFF" android:pathData="M19,13v-2c-1.54,0.02 -3.09,-0.75 -4.07,-1.83l-1.29,-1.43c-0.17,-0.19 -0.38,-0.34 -0.61,-0.45 -0.01,0 -0.01,-0.01 -0.02,-0.01L13,7.28c-0.35,-0.2 -0.75,-0.3 -1.19,-0.26C10.76,7.11 10,8.04 10,9.09L10,15c0,1.1 0.9,2 2,2h5v5h2v-5.5c0,-1.1 -0.9,-2 -2,-2h-3v-3.45c1.29,1.07 3.25,1.94 5,1.95zM12.83,18c-0.41,1.16 -1.52,2 -2.83,2 -1.66,0 -3,-1.34 -3,-3 0,-1.31 0.84,-2.41 2,-2.83L9,12.1c-2.28,0.46 -4,2.48 -4,4.9 0,2.76 2.24,5 5,5 2.42,0 4.44,-1.72 4.9,-4h-2.07z"/>
</vector>

これが私のアプリbuild.gradleです

apply plugin: 'com.android.application'

android {
    compileSdkVersion 23
    buildToolsVersion "23.0.2"

    defaultConfig {
        applicationId "au.com.angryitguy.testsvg"
        minSdkVersion 16
        targetSdkVersion 23
        versionCode 1
        versionName "1.0"
        // Stops the Gradle plugin’s automatic rasterization of vectors
        generatedDensities = []
    }
    // Flag to tell aapt to keep the attribute ids around
    aaptOptions {
        additionalParameters "--no-version-vectors"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    testCompile 'junit:junit:4.12'
    compile 'com.android.support:appcompat-v7:23.2.0'
}

これがクラッシュです。(textviewを参照する膨張エラーに注意してください。)

java.lang.RuntimeException: Unable to start activity ComponentInfo{
    au.com.angryitguy.testsvg/au.com.angryitguy.testsvg.MainActivity}: 
    android.view.InflateException: Binary XML file line #13: 
    Error inflating class TextView

at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2059)
at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2084)
at android.app.ActivityThread.access$600(ActivityThread.java:130)
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1195)
at android.os.Handler.dispatchMessage(Handler.java:99)
at android.os.Looper.loop(Looper.java:137)
at android.app.ActivityThread.main(ActivityThread.java:4745)
...

Caused by: android.view.InflateException: 
    Binary XML file line #13: Error inflating class TextView
at android.view.LayoutInflater.createViewFromTag(LayoutInflater.java:704)
at android.view.LayoutInflater.rInflate(LayoutInflater.java:746)
at android.view.LayoutInflater.inflate(LayoutInflater.java:489)
at android.view.LayoutInflater.inflate(LayoutInflater.java:396)
at android.view.LayoutInflater.inflate(LayoutInflater.java:352)
at android.support.v7.app.AppCompatDelegateImplV7.setContentView(AppCompatDelegateImplV7.java:267)
at android.support.v7.app.AppCompatActivity.setContentView(AppCompatActivity.java:129)
at au.com.angryitguy.testsvg.MainActivity.onCreate(MainActivity.java:14)
at android.app.Activity.performCreate(Activity.java:5008)
...

Caused by: android.content.res.Resources$NotFoundException: 
    File res/drawable/ic_accessible_white_36px.xml from drawable resource ID #0x7f02004b
at android.content.res.Resources.loadDrawable(Resources.java:1918)
at android.content.res.TypedArray.getDrawable(TypedArray.java:601)
at android.widget.TextView.<init>(TextView.java:622)
at android.support.v7.widget.AppCompatTextView.<init>(AppCompatTextView.java:60)
at android.support.v7.widget.AppCompatTextView.<init>(AppCompatTextView.java:56)
at android.support.v7.app.AppCompatViewInflater.createView(AppCompatViewInflater.java:103)
at android.support.v7.app.AppCompatDelegateImplV7.createView(AppCompatDelegateImplV7.java:963)
at android.support.v7.app.AppCompatDelegateImplV7.onCreateView(AppCompatDelegateImplV7.java:1022)
at android.support.v4.view.LayoutInflaterCompatHC$FactoryWrapperHC.onCreateView(LayoutInflaterCompatHC.java:44)
at android.view.LayoutInflater.createViewFromTag(LayoutInflater.java:675)
at android.view.LayoutInflater.rInflate(LayoutInflater.java:746) 
at android.view.LayoutInflater.inflate(LayoutInflater.java:489) 
at android.view.LayoutInflater.inflate(LayoutInflater.java:396) 
at android.view.LayoutInflater.inflate(LayoutInflater.java:352) 
at android.support.v7.app.AppCompatDelegateImplV7.setContentView(AppCompatDelegateImplV7.java:267) 
at android.support.v7.app.AppCompatActivity.setContentView(AppCompatActivity.java:129) 
at au.com.angryitguy.testsvg.MainActivity.onCreate(MainActivity.java:14) 
at android.app.Activity.performCreate(Activity.java:5008) 
...

Caused by: org.xmlpull.v1.XmlPullParserException:
    Binary XML file line #1: invalid drawable tag vector
at android.graphics.drawable.Drawable.createFromXmlInner(Drawable.java:877)
at android.graphics.drawable.Drawable.createFromXml(Drawable.java:818)
at android.content.res.Resources.loadDrawable(Resources.java:1915)
at android.content.res.TypedArray.getDrawable(TypedArray.java:601) 
at android.widget.TextView.<init>(TextView.java:622) 
at android.support.v7.widget.AppCompatTextView.<init>(AppCompatTextView.java:60) 
at android.support.v7.widget.AppCompatTextView.<init>(AppCompatTextView.java:56) 
at android.support.v7.app.AppCompatViewInflater.createView(AppCompatViewInflater.java:103) 
at android.support.v7.app.AppCompatDelegateImplV7.createView(AppCompatDelegateImplV7.java:963) 
at android.support.v7.app.AppCompatDelegateImplV7.onCreateView(AppCompatDelegateImplV7.java:1022) 
at android.support.v4.view.LayoutInflaterCompatHC$FactoryWrapperHC.onCreateView(LayoutInflaterCompatHC.java:44) 
at android.view.LayoutInflater.createViewFromTag(LayoutInflater.java:675) 
at android.view.LayoutInflater.rInflate(LayoutInflater.java:746) 
at android.view.LayoutInflater.inflate(LayoutInflater.java:489) 
at android.view.LayoutInflater.inflate(LayoutInflater.java:396) 
at android.view.LayoutInflater.inflate(LayoutInflater.java:352) 
at android.support.v7.app.AppCompatDelegateImplV7.setContentView(AppCompatDelegateImplV7.java:267) 
at android.support.v7.app.AppCompatActivity.setContentView(AppCompatActivity.java:129) 
at au.com.angryitguy.testsvg.MainActivity.onCreate(MainActivity.java:14) 
at android.app.Activity.performCreate(Activity.java:5008) 
...

いいえ、できません。SVGファイルはネイティブでサポートされていないためです。代わりに、VectorDrawableを使用する必要があります(SVG仕様のサブセットのみを使用します)。
Phantômaxx

2
VectorDrawableをdrawableLeft、drawableRight、drawableTop、drawableBottomと一緒に使用する方法を確認するには、この回答
Behzad Bahmanyar

私は私のためにこの作品を見つけました:android.jlelse.eu/...
フイタワー

回答:


186

SVGアセットにdrawableRightなどを使用することは可能ですか?

はい

AppCompatTextViewは サポートapp:drawableLeftCompatapp:drawableTopCompatapp:drawableRightCompatapp:drawableBottomCompatapp:drawableStartCompatおよびapp:drawableEndCompatなどのバックポート描画可能なタイプをサポートしている化合物ドローアブル、VectorDrawableCompat

これをgradleファイルに含めます

implementation 'androidx.appcompat:appcompat:1.1.0-alpha01'

あなたのテキストビューであなたは使うことができます

app:drawableLeftCompat
app:drawableStartCompat

app:drawableLeftCompat、app:drawableStartCompatをボタンで使用中に問題が発生した場合は、ライブラリを次のように更新する必要があります。

androidx.appcompat:appcompat:1.2.0-alpha01

彼らにはバグがありました

androidx.appcompat:appcompat:1.1.0-alpha01

あなたはドキュメントを見ることができます


または、まだ更新したくない場合は、次のようにします。

Googleはすぐにこの問題について何もしないと思われるため、すべてのアプリに対して、より確実で再利用可能なソリューションを考え出す必要がありました。

  1. まず、アプリ「res / values / attrs.xml」の attrs.xmlファイルにカスタムTextView属性を追加します。

    <resources>
        <declare-styleable name="CustomTextView">
            <attr name="drawableStartCompat" format="reference"/>
            <attr name="drawableEndCompat" format="reference"/>
            <attr name="drawableTopCompat" format="reference"/>
            <attr name="drawableBottomCompat" format="reference"/>
        </declare-styleable>
    </resources>
  2. 次に、次のようなカスタムTextViewクラスを作成します。

    import android.content.Context;
    import android.content.res.TypedArray;
    import android.graphics.drawable.Drawable;
    import android.os.Build;
    import android.support.v7.content.res.AppCompatResources;
    import android.support.v7.widget.AppCompatTextView;
    import android.util.AttributeSet;
    
    public class CustomTextView extends AppCompatTextView {
        public CustomTextView(Context context) {
            super(context);
        }    
        public CustomTextView(Context context, AttributeSet attrs) {
            super(context, attrs);
            initAttrs(context, attrs);
        }
        public CustomTextView(Context context, AttributeSet attrs, int defStyleAttr) {
            super(context, attrs, defStyleAttr);
            initAttrs(context, attrs);
        }
    
        void initAttrs(Context context, AttributeSet attrs) {
            if (attrs != null) {
                TypedArray attributeArray = context.obtainStyledAttributes(
                        attrs,
                        R.styleable.CustomTextView);
    
                Drawable drawableStart = null;
                Drawable drawableEnd = null;
                Drawable drawableBottom = null;
                Drawable drawableTop = null;
                if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
                    drawableStart = attributeArray.getDrawable(R.styleable.CustomTextView_drawableStartCompat);
                    drawableEnd = attributeArray.getDrawable(R.styleable.CustomTextView_drawableEndCompat);
                    drawableBottom = attributeArray.getDrawable(R.styleable.CustomTextView_drawableBottomCompat);
                    drawableTop = attributeArray.getDrawable(R.styleable.CustomTextView_drawableTopCompat);
                } else {
                    final int drawableStartId = attributeArray.getResourceId(R.styleable.CustomTextView_drawableStartCompat, -1);
                    final int drawableEndId = attributeArray.getResourceId(R.styleable.CustomTextView_drawableEndCompat, -1);
                    final int drawableBottomId = attributeArray.getResourceId(R.styleable.CustomTextView_drawableBottomCompat, -1);
                    final int drawableTopId = attributeArray.getResourceId(R.styleable.CustomTextView_drawableTopCompat, -1);
    
                    if (drawableStartId != -1)
                        drawableStart = AppCompatResources.getDrawable(context, drawableStartId);
                    if (drawableEndId != -1)
                        drawableEnd = AppCompatResources.getDrawable(context, drawableEndId);
                    if (drawableBottomId != -1)
                        drawableBottom = AppCompatResources.getDrawable(context, drawableBottomId);
                    if (drawableTopId != -1)
                        drawableTop = AppCompatResources.getDrawable(context, drawableTopId);
                }
    
                // to support rtl
                setCompoundDrawablesRelativeWithIntrinsicBounds(drawableStart, drawableTop, drawableEnd, drawableBottom);
                attributeArray.recycle();
            }
        }
    }
  3. これで、カスタム属性により、どのレイアウトでも簡単に使用できます。

    <YOUR_VIEW_PACKAGE.CustomTextView
        android:id="@+id/edt_my_edit_text"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        app:drawableStartCompat="@drawable/your_vector_drawable" <!-- vector drawable -->
        app:drawableEndCompat="@drawable/your_vector_drawable" <!-- vector drawable -->
        app:drawableTopCompat="@drawable/your_vector_drawable" <!-- vector drawable -->
        app:drawableBottomCompat="@drawable/your_vector_drawable" <!-- vector drawable -->
        />
    • TextViewから派生したため、ButtonEditTextRadioButtonでも同様のことができます。

お役に立てれば :)


4
非常に役立つ答え。とにかく、私はDadouの非常に完全な答えも読むことをお勧めします。その答えが私のために働いたことを示唆vectorDrawables { useSupportLibrary = true }しているbuild.gradleので、私から削除します。
サム・

私はそれをしたので、次の問題が発生しました。XMLでonclickをアタッチすると、次のエラーが発生します:java.lang.NoSuchMethodException:onClick [class android.view.View]
Ramdane Oualitsen

3
vectorDrawables useSupportLibrary = trueグラドルからラインを取り除くことに同意しません。削除しても、ベクターをビュー内に配置できますが、ベクターのサイズはpngと同じです。つまり、ベクターが引き伸ばされて粗くなります。5.0 / API21未満のデバイスが実際にベクトルのサイズを正しく変更して鮮明に見えるようにするには、gradleファイル内のその行を使用する必要があります。その行を入力すると、IDEが呼び出され、ベクターを誤って使用している領域が検出されます。次に、app:srcCompatXMLを使用するか、コードで設定する必要がありますVectorDrawableCompat.create()
Heinous Games

app:drawableEndCompatRTLサポートを改善するために追加する方法は?原因にsetCompoundDrawablesRelativeWithIntrinsicBoundsは少なくともAPIレベル17が必要です。
Dr.jacky

1
プログラムでドローアブルを設定するのはどうですか?
Android開発者、

77

この解決策は正しくありません。23.3.0バージョンから、ベクタードローアブルはapp:srcCompatまたはsetImageResource()を介してのみロードできます

ベクタードローアブルをレイヤーリストまたはセレクターにラップしてみてください。

<TextView
    android:id="@+id/textView"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:drawableRight="@drawable/ic_accessible_white_wrapped"
    android:background="@color/colorPrimary"
    android:textColor="#FFFFFF"
    android:textSize="22sp"
    android:text="Hello World!"/>

ic_accessible_white_wrapped.xml:

<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:drawable="@drawable/ic_accessible_white_36px"/>
</layer-list>

これはうまくいきます。ありがとう。しかし、「android:drawableXXXXX」でSVGを直接参照することはできないようです。別の何かでラップする必要があります。
angryITguy 2016

1
はい。直接使用することはできません。app:srcCompatまたはラップまたはプログラムとしてのみ。これは、ここに記載された:android-developers.blogspot.ru/2016/02/...
アレクサンドルShutkoを

ああ..ありがとう..私はあなたが言及している段落を見ることができます。だから、彼らがあなたにそれをしないように言ったらそれはまだバグですか?;)
angryITguy 2016

1
下位互換性がすべてだと思います。完全なsvgサポートを取得するためにいくつかの問題があるように見えるので、彼らはいくつかの回避策を
講じました

2
@HarishGyananiのサポートバージョン23.3.0から、これ以上のサポートはありません。アクティビティにさらにコマンドを追加する必要があります:static {if(Build.VERSION.SDK_INT <Build.VERSION_CODES.LOLLIPOP){AppCompatDelegate.setCompatVectorFromResourcesEnabled(true); }}
Cuong Nguyen

75

私が見つけた最良の方法:

Drawable leftDrawable = AppCompatResources.getDrawable(this, R.drawable.ic_search);
search.setCompoundDrawablesWithIntrinsicBounds(leftDrawable, null, null, null);

9
2017年8月25日の時点で、これが私に有効な唯一の方法です(プログラムで描画可能オブジェクトを設定する)。私は実際に使用しました:Drawable drawable = VectorDrawableCompat.create(getResources(), status.getIconResId(), wrapper.getTheme()); statusButton.setCompoundDrawablesRelativeWithIntrinsicBounds(null, drawable, null, null);
saiyancoder 2017

2
minSdk for setCompoundDrawablesWithIntrinsicBounds17です。それ以外の場合、これはうまくいきます。
ビクターレンディーナ2017年

1
そのminSdkは17ではなく1です。おそらく同じようなAPIに見えます。setCompoundDrawablesWithIntrinsicBounds => minSdk 1; setCompoundDrawablesRelativeWithIntrinsicBounds => minSdk 17
正宗白布鞋

プログラムで設定するための最適なソリューション、+ 1
Woton Sampaio 2018

BindingAdaptersでこれを使用し、効果的に機能しました。ありがとうございます。
Ric17101

61

ここでいくつかの答えを補足するために:VectorDrawableをdrawableLeft(など)として動作させることができますが、サポートライブラリのバージョンに依存し、価格が付属しています。

どのような場合に機能しますか?私はこの図を参考にしています(サポートライブラリ23.4.0から-少なくとも-25.1.0まで有効)。

VectorDrawableチートシート


2
すばらしいですが、静的ブロックのメソッド名を次のように修正する必要がありますsetCompatVectorFromResourcesEnabled
Vikas Patidar 2017

1
残念ながら、25.3.1ではsetCompatVectorFromResourcesEnabledソリューションが機能しません
Ilja S.

From 23.3.0 version vector drawables can only be loaded via app:srcCompat or setImageResource()そのため、このソリューションは廃止され、機能しません
user25

有効にsetCompatVectorFromSourcesEnabled(true)するとandroid:background、Android 4.xでvectordrawablesを読み込むことができます。ほんとありがと!(実際のベクターを1つのアイテムのレイヤーリストにラップする必要があります)
Peterdk

14

他の回答はいずれも、ここに私が追加した方法です、働いていないVectorDrawableのをTextView、あなたが使用する必要がありますVectorDrawableCompat.create()を扱うときVectorDrawables以下Android L

TextView titleTextView = (TextView) viewHolder.getView(android.R.id.text1);
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP)
{
       Drawable leftDrawable = AppCompatResources
                            .getDrawable(context, R.drawable.ic_tickbox);
       titleTextView.setCompoundDrawablesWithIntrinsicBounds(leftDrawable, null, null, null);
}
else
{
      //Safely create our VectorDrawable on pre-L android versions. 
       Drawable leftDrawable = VectorDrawableCompat
                            .create(context.getResources(), R.drawable.ic_tickbox, null);
       titleTextView.setCompoundDrawablesWithIntrinsicBounds(leftDrawable, null, null, null);
}

短くて、甘く、要領を得ています!


これはAndroid Pで機能し、最小APIレベル26(ターゲット28)
MiStr

@MiStr-下位互換性もあります:)
Sakiboy '22

9

Googleから:Androidサポートライブラリ23.3.0以降、サポートベクタードローアブルはapp:srcCompatまたはsetImageResource()を介してのみロードできます。

http://android-developers.blogspot.ru/2016/02/android-support-library-232.html


1
それは今のところ解決策がないことを意味します
キラー

ベクタードローアブルをレイヤーリストまたはセレクターにラップしてみてください:<TextView android:id = "@ + id / textView" android:layout_width = "match_parent" android:layout_height = "wrap_content" android:drawableRight = "@ drawable / ic_accessible_white_wrapped" android:background = "@ color / colorPrimary" android:textColor = "#FFFFFF" android:textSize = "22sp" android:text = "Hello World!" /> ic_accessible_white_wrapped.xml:<layer-list xmlns:android = " schemas .android.com / apk / res / android "> <item android:drawable =" @ drawable / ic_accessible_white_36px "/> </ layer-list>
Null Pointer Exception

9

ベクタードローアブルをxmlで直接設定することは可能ですが、データバインディングフレームワークが含まれています。

書くだけ

<TextView
...
android:drawableRight="@{@drawable/ic_accessible_white_36px}"/>

レイアウト全体を<layout>タグでラップするので、基本的にはxmlは次のようになります。

<?xml version="1.0" encoding="utf-8"?>
<layout>

    <RelativeLayout
        xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:tools="http://schemas.android.com/tools"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:paddingBottom="@dimen/activity_vertical_margin"
        android:paddingLeft="@dimen/activity_horizontal_margin"
        android:paddingRight="@dimen/activity_horizontal_margin"
        android:paddingTop="@dimen/activity_vertical_margin"
        tools:context="au.com.angryitguy.testsvg.MainActivity">


        <TextView
            android:id="@+id/textView"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:background="@color/colorPrimary"
            android:drawableRight="@{@drawable/ic_accessible_white_36px}"
            android:text="Hello World!"
            android:textColor="#FFFFFF"
            android:textSize="22sp"/>
    </RelativeLayout>
</layout>

データバインディングフレームワークをアクティブ化するには、

android {
    ....
    defaultConfig {
        dataBinding {
            enabled = true
        }
    }
}

バインディングライブラリの他の機能を使用する必要はありません

編集:

もちろん、Lollipopの前にベクタードローアブルを使用したい場合は、

vectorDrawables.useSupportLibrary = true

したがって、build.gradle2つの新しいコマンドが必要です。

android {
    ....
    defaultConfig {
        vectorDrawables.useSupportLibrary = true
        dataBinding {
            enabled = true
        }
    }
}

備考のrkmaxに感謝


これは良いアイデアですが、これを機能させるにはバインディングアダプタを作成する必要があります。これが実際の例です:gist.github.com/lisawray/78c33f76809d2bcbbec9983e2c141a70
BladeCoder

1
私はこれがうまくいくと言わなければなりませんがvectorDrawables.useSupportLibrary、app / build.gradleで有効にし、アクティビティにAppCompatDelegate.setCompatVectorFromResourcesEnabled(true)を追加する必要があります
rkmax

defaultConfigを追加するのを忘れたbuild.gradleので、これが機能しないのかもしれません
Hans M

ありがとう-あなたは命の恩人です!
Van

これは過小評価されている答えです!
DYS

6

私はすべての回答に目を通し、最新のAndroid Studio 3.0.1およびAppCompat Support Library 26.1.0を使用しました。これが問題なく機能することを確認できます。

build.gradle(アプリ)ファイル

android {
    compileSdkVersion 26
    defaultConfig {
        vectorDrawables.useSupportLibrary = true
    }
}

dependencies {
    implementation 'com.android.support:appcompat-v7:26.1.0'
}

そしてアクティビティの拡張にAppcompatActivityは、この外部メソッド、つまりstaticブロックを含めます

static {
    AppCompatDelegate.setCompatVectorFromResourcesEnabled(true);
}  

またはこれをアプリ全体に適用したい場合は、クラス拡張Applicationクラス内にこの行を含めるだけです

override fun onCreate() {
    super.onCreate()
    AppCompatDelegate.setCompatVectorFromResourcesEnabled(true)
}

XMLでのテキストビュー

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:gravity="center"
    android:orientation="vertical">

<TextView
        android:id="@+id/passName"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:drawableLeft="@drawable/account_drawableleft_selector"
        android:drawablePadding="5dp"
        android:ellipsize="marquee"
        android:fontFamily="@font/montserrat_light_family"
        android:gravity="center_vertical"
        android:marqueeRepeatLimit="marquee_forever"
        android:paddingRight="10dp"
        android:scrollHorizontally="true"
        android:singleLine="true"
        android:textColor="@color/app_text_color"
        android:textSize="12sp"
        tools:text="Account Name" />
</LinearLayout>

account_drawableleft_selector.xml

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:drawable="@drawable/ic_account_circle_24dp" /> <!-- checked -->
</selector>

どのAPIでも問題なく動作しますか?19か20を試着しましたか?
2018

あなたはどのように使用するかを示すことができるdrawableRightためにTextViewXMLに?
ダイバーは2018

2
上記のいくつかのように、uがdrawableLeftとして直接ベクトルxmlを使用する場合、uはこのクラッシュまたは例外を引き続き発生するため、回避策はそのxmlをTextviewのdrawableLeftのセレクターとして使用することです。使い方は編集した回答で見ることができます。
アミットツムクル2018


API 19および20でテストしてください。代わりに、アプリケーションクラスでAppCompatDelegate.setCompatVectorFromResourcesEnabledを使用しました。魅力的な働き!
Red M


5

私はこの問題に遅れをとったので、この質問に答えるのがとても遅いです。TextViewのsvg / vectorドローアブルでも同じ問題がありました。独自のカスタムドローアブルを作成する代わりに、次の2行のコードで問題を修正できます。

Drawable drawableTop = AppCompatResources.getDrawable(view.getContext(), iconId);
view.setCompoundDrawablesWithIntrinsicBounds(null, drawableTop, null, null);

それがあなたを助けることを願っています。


以前のLデバイスと互換性がありません。
Sakiboy

@Sakiboyそうです、私はこのコードを最小API 17で使用しているためです。–
Rahul Sharma

VectorDrawablespre-Lを実行しているすべてのデバイスでは機能しません。ただ言うだけです。この回答を使用するときは、より安全で正確なAPIを使用するように注意してください。
Sakiboy

4

私はこのための小さなライブラリを設計しました-textview-rich-drawable(これは、複合ドローアブルのサイズと色合いの定義もサポートしています)。

<com.tolstykh.textviewrichdrawable.TextViewRichDrawable
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Some text"
    app:compoundDrawableHeight="24dp"
    app:compoundDrawableWidth="24dp"
    app:drawableTopVector="@drawable/some_vector_drawble"
    app:drawableEndVector="@drawable/another_vector_drawable"
    app:drawableTint="@color/colorAccent" />

そして依存関係

compile 'com.tolstykh.textviewrichdrawable:textview-rich-drawable:0.3.2'

ここに画像の説明を入力してください


3

バインディングを使用している場合、TextViewでベクトルを使用するための同じアプローチを持つ別の魔法の方法があります。それらを次のようにラップします:

android:drawableLeft="@{@drawable/vector_ic_access_time_24px}"
android:drawableStart="@{@drawable/vector_ic_access_time_24px}"

それは魔法のように機能します。舞台裏で何が起こっているのかは調査していませんが、TextViewがや類似のgetDrawableメソッドを使用していると思いAppCompatResourcesます。


2

Behzad Bahmanyarの回答に基づいて、通常のpngファイルにはAndroidの通常の属性を使用できないことに気付きました。

android:drawableTop
android:drawableBottom
etc

でnullに置き換えられるため

Drawable drawableTop = null;
...
setCompoundDrawablesRelativeWithIntrinsicBounds(drawableStart, drawableTop, drawableEnd, drawableBottom);

app:drawableTopCompat設定されていない場合は、android:drawableTopが、(たとえば)。

ここに完全なソリューションがあります:

public class CustomTextView extends AppCompatTextView {
    private static final int NOT_SET = -1;
    private static final int LEFT = 0;
    private static final int START = 0;
    private static final int TOP = 1;
    private static final int RIGHT = 2;
    private static final int END = 2;
    private static final int BOTTOM = 3;

    public CustomTextView(Context context) {
        super(context);
    }

    public CustomTextView(Context context, AttributeSet attrs) {
        super(context, attrs);
        initAttrs(context, attrs);
    }

    public CustomTextView(Context context, AttributeSet attrs, int defStyleAttr) {
        super(context, attrs, defStyleAttr);
        initAttrs(context, attrs);
    }

    void initAttrs(Context context, AttributeSet attrs) {
        if (attrs == null) {
            return;
        }
        Drawable[] drawablesArr = getCompoundDrawables();

        TypedArray attributeArray = context.obtainStyledAttributes(attrs, R.styleable.CustomTextView);
        Drawable drawableStart = null;
        Drawable drawableEnd = null;
        Drawable drawableBottom = null;
        Drawable drawableTop = null;
        Drawable drawableLeft = null;
        Drawable drawableRight = null;

        if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
            drawableStart = attributeArray.getDrawable(R.styleable.CustomTextView_drawableStartCompat);
            drawableEnd = attributeArray.getDrawable(R.styleable.CustomTextView_drawableEndCompat);
            drawableBottom = attributeArray.getDrawable(R.styleable.CustomTextView_drawableBottomCompat);
            drawableTop = attributeArray.getDrawable(R.styleable.CustomTextView_drawableTopCompat);
            drawableLeft = attributeArray.getDrawable(R.styleable.CustomTextView_drawableLeftCompat);
            drawableRight = attributeArray.getDrawable(R.styleable.CustomTextView_drawableRightCompat);
        } else {
            final int drawableStartId = attributeArray.getResourceId(R.styleable.CustomTextView_drawableStartCompat, NOT_SET);
            final int drawableEndId = attributeArray.getResourceId(R.styleable.CustomTextView_drawableEndCompat, NOT_SET);
            final int drawableBottomId = attributeArray.getResourceId(R.styleable.CustomTextView_drawableBottomCompat, NOT_SET);
            final int drawableTopId = attributeArray.getResourceId(R.styleable.CustomTextView_drawableTopCompat, NOT_SET);
            final int drawableLeftId = attributeArray.getResourceId(R.styleable.CustomTextView_drawableLeftCompat, NOT_SET);
            final int drawableRightId = attributeArray.getResourceId(R.styleable.CustomTextView_drawableRightCompat, NOT_SET);

            if (drawableStartId != NOT_SET)
                drawableStart = AppCompatResources.getDrawable(context, drawableStartId);
            if (drawableLeftId != NOT_SET)
                drawableLeft = AppCompatResources.getDrawable(context, drawableLeftId);
            if (drawableEndId != NOT_SET)
                drawableEnd = AppCompatResources.getDrawable(context, drawableEndId);
            if (drawableRightId != NOT_SET)
                drawableRight = AppCompatResources.getDrawable(context, drawableRightId);
            if (drawableBottomId != NOT_SET)
                drawableBottom = AppCompatResources.getDrawable(context, drawableBottomId);
            if (drawableTopId != NOT_SET)
                drawableTop = AppCompatResources.getDrawable(context, drawableTopId);
        }

        drawableStart = (drawableStart != null ? drawableStart : drawablesArr[START]);
        drawableLeft = (drawableLeft != null ? drawableLeft : drawablesArr[LEFT]);
        drawableStart = (drawableStart != null ? drawableStart : drawableLeft);

        drawableEnd = (drawableEnd != null ? drawableEnd : drawablesArr[END]);
        drawableRight = (drawableRight != null ? drawableRight : drawablesArr[RIGHT]);
        drawableEnd = (drawableEnd != null ? drawableEnd : drawableRight);

        drawableBottom = (drawableBottom != null ? drawableBottom : drawablesArr[BOTTOM]);
        drawableTop = (drawableTop != null ? drawableTop : drawablesArr[TOP]);

        if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN_MR1) {
            setCompoundDrawablesRelativeWithIntrinsicBounds(drawableStart, drawableTop, drawableEnd, drawableBottom);
        } else {
            setCompoundDrawables(drawableStart, drawableTop, drawableEnd, drawableBottom);
        }

        attributeArray.recycle();
    }
}

これは受け入れられるべき答えです。通常のpngファイルと属性drawableTop、drawableBottomで動作します。受け入れられた回答は、pngファイルとdrawableTop、drawableBottom属性では動作しません。
Bhargav Pandya

2

build.gradle(アプリ)ファイル内

android {
    compileSdkVersion 26
    defaultConfig {
        vectorDrawables.useSupportLibrary = true
    }

    dataBinding {
        enabled = true
    }
}

...

public class BindingUtils {
    @BindingAdapter("android:drawableRight")
    public static void setDrawableStart(TextView textView, int resourceId) {
        Drawable drawable = AppCompatResources.getDrawable(textView.getContext(), resourceId);
        Drawable[] drawables = textView.getCompoundDrawables();
        textView.setCompoundDrawablesWithIntrinsicBounds(drawable,
                drawables[1], drawables[2], drawables[3]);
    } 
}

使用(データバインディング時)

android:drawableRight="@{viewModel.ResId}"

または(通常)

android:drawableRight="@{@drawable/ic_login_24dp}"

1

ベクター型ドローアブルの使用

コトリン

 val drawable1 = VectorDrawableCompat.create(resources, R.drawable.ic_rb_username, theme)
        yourView.setCompoundDrawablesRelativeWithIntrinsicBounds( drawable1, null, null, null)

java

  Drawable drawable1 = VectorDrawableCompat.create(getResources(), R.drawable.ic_rb_username, getTheme());
        yourView.setCompoundDrawablesRelativeWithIntrinsicBounds( drawable1, null, null, null);

1

後方互換性のために使用します:

TextViewCompat.setCompoundDrawablesRelativeWithIntrinsicBounds(textView, left, top, right, bottom)

0

この問題を解決するためにバインディングアダプターを使用しています

@JvmStatic
@BindingAdapter("drawableSvgLeft")
fun addDrawableSvgLeft(textView: TextView,drawable: Drawable){
    textView.setCompoundDrawablesWithIntrinsicBounds(drawable,null,null,null)
}

@JvmStatic
@BindingAdapter("drawableSvgRight")
fun addDrawableSvgRight(textView: TextView,drawable: Drawable){
    textView.setCompoundDrawablesWithIntrinsicBounds(null,null,drawable,null)
}

また、私のレイアウトでこのように使用する

<TextView
  drawableSvgRight="@{@drawable/svg_ic_battle_trophy}"
  .....

おそらくvectorDrawables.useSupportLibrary =デフォルトの設定でtrueが必要です

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.