É possível usar o VectorDrawable em botões e TextViews usando o android: DrawableRight?


120

Quando uso os recursos do VectorDrawable em uma exibição de texto ou imagem, recebo uma falha de tempo de execução ao usar "android: DrawableRight" / "android: DrawableEnd" / "android: DrawableStart" / "android: DrawableLeft".

O aplicativo será compilado sem nenhum aviso.

estou usando

  • Gradle 1.5
  • Biblioteca de suporte 23.2 ('com.android.support:appcompat-v7:23.2.0')

O que eu descobri é que posso atribuir SVG programaticamente em Java sem falhas como essa.

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

(Suspeito que este seja um bug da biblioteca de suporte para 23.2.)

Mas é possível usar drawableRight etc para ativos SVG?

Aqui está o meu layout

<?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>

Aqui está a minha atividade

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);

        }
    }

Aqui está o ativo VectorDrawable não modificado do site de design de materiais do Google.

<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>

Aqui está o meu aplicativo 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'
}

Aqui está o acidente. (Observe os erros inflacionados que referenciam a exibição de texto.)

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) 
...

Não, você não pode, pois os arquivos SVG não são suportados nativamente . Você precisa usar um VectorDrawable (que usa apenas um subconjunto das especificações SVG).
Phantômaxx 3/03

2
Para ver como usar VectorDrawable com drawableLeft, drawableRight, drawableTop, drawableBottom confira Esta resposta
Behzad Bahmanyar

Eu encontrei isso funciona para mim: android.jlelse.eu/…
Huy Tower

Respostas:


186

possível usar drawableRight etc para ativos SVG?

sim

AppCompatTextView agora suportes app:drawableLeftCompat, app:drawableTopCompat, app:drawableRightCompat, app:drawableBottomCompat, app:drawableStartCompate app:drawableEndCompatdrawables compostos, apoiando backported tipos resgatáveis, tais como VectorDrawableCompat.

Inclua isso no seu arquivo gradle

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

Na sua exibição de texto, você pode usar

app:drawableLeftCompat
app:drawableStartCompat

Se você tiver problemas ao usar os botões app: drawableLeftCompat, app: drawableStartCompat, precisará atualizar sua biblioteca para

androidx.appcompat: appcompat: 1.2.0-alpha01

eles tinham um bug

androidx.appcompat: appcompat: 1.1.0-alpha01

você pode ver os documentos


Ou se você não deseja atualizar ainda, então:

Como parece que o Google não fará nada sobre esse problema tão cedo, tive que encontrar uma solução reutilizável mais sólida para todos os meus aplicativos:

  1. Primeiro, adicione atributos personalizados do TextView no arquivo attrs.xml do seu aplicativo "res / values ​​/ attrs.xml" :

    <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. Em seguida, crie uma classe TextView personalizada como esta:

    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. Agora você pode usá-lo facilmente em qualquer layout usando seus atributos personalizados:

    <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 -->
        />
    • Você pode fazer algo semelhante com Button , EditText e RadioButton porque eles derivaram do TextView

Espero que isto ajude :)


4
Resposta muito útil. De qualquer forma, eu recomendo ler a resposta muito completa de Dadou também. Remover vectorDrawables { useSupportLibrary = true }do meu build.gradlecomo essa resposta sugere funcionou para mim.
Sam

Eu fiz isso e eu tenho agora o seguinte problema: quando eu anexar o onclick em XML eu recebo o seguinte erro: java.lang.NoSuchMethodException: onClick [classe android.view.View]
Ramdane Oualitsen

3
Não concordo com a remoção da vectorDrawables useSupportLibrary = truelinha do gradle. Ao removê-lo, você ainda pode colocar vetores nas suas visualizações, mas eles são redimensionados da mesma forma que os pngs, o que significa que serão esticados e granulados. Se você deseja que os dispositivos abaixo de 5.0 / API21 redimensionem os vetores corretamente para que fiquem nítidos, use essa linha dentro do arquivo gradle. Colocar essa linha no invoca o IDE para encontrar áreas onde você está usando vetores incorretamente e, em seguida, você deve usar a app:srcCompatvia XML ou defini-lo por meio de código comVectorDrawableCompat.create()
hediondos Jogos

Como adicionar app:drawableEndCompatpara melhor suporte a RTL? A causa setCompoundDrawablesRelativeWithIntrinsicBoundsprecisa do nível 17 da API pelo menos.
precisa saber é o seguinte

1
Que tal definir o drawable programaticamente?
desenvolvedor android

77

Esta solução não está mais correta. A partir da versão 23.3.0, os drawables vetoriais da versão só podem ser carregados via app: srcCompat ou setImageResource ()

Tente agrupar seu desenho vetorial na lista de camadas ou no seletor:

<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>

Isso funciona bem. Obrigado .. Mas parece que você não pode se referir diretamente a um SVG em "android: drawableXXXXX", você precisa envolvê-lo em outra coisa.
precisa saber é o seguinte

1
Sim. Você não pode usá-lo diretamente. Somente como aplicativo: srcCompat ou agrupado ou programaticamente. Isto foi descrito aqui: android-developers.blogspot.ru/2016/02/...
Alexandr Shutko

Ahh .. obrigado .. Eu posso ver o parágrafo que você está se referindo. Então, ainda é um erro se eles disserem para não fazer isso? ;)
angryITguy

1
Eu acho que é tudo sobre compatibilidade com versões anteriores. Parece que há algum problema para obter suporte a SVG completo, então eles fizeram algumas soluções ...
Alexandr Shutko

2
@HarishGyanani da versão de suporte 23.3.0, não é mais um suporte. Você deve adicionar mais comandos em sua atividade: static {if (Build.VERSION.SDK_INT <Build.VERSION_CODES.LOLLIPOP) {AppCompatDelegate.setCompatVectorFromResourcesEnabled (true); }}
Cuong Nguyen

75

A melhor maneira que encontrei:

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

9
A partir de 25/8/17, essa é a única coisa que funciona para mim (configurando o drawable programaticamente). Na verdade, eu usei:Drawable drawable = VectorDrawableCompat.create(getResources(), status.getIconResId(), wrapper.getTheme()); statusButton.setCompoundDrawablesRelativeWithIntrinsicBounds(null, drawable, null, null);
saiyancoder 26/08

2
minSdk for setCompoundDrawablesWithIntrinsicBoundsé 17 . Caso contrário, isso funciona muito bem.
Victor Rendina

1
Seu minSdk é 1 e não 17, você provavelmente parece com as APIs semelhantes. setCompoundDrawablesWithIntrinsicBounds => minSdk 1; setCompoundDrawablesRelativeWithIntrinsicBounds => minSdk 17
正宗 白

Melhor solução para configuração de programação, +1
Woton Sampaio 14/09/18

Eu usei isso com BindingAdapters e funciona de forma eficaz, obrigado!
Ric17101

61

Para complementar algumas das respostas aqui: você pode fazer com que o VectorDrawable funcione como drawableLeft(etc.), mas isso depende da versão da Biblioteca de suporte e tem um preço.

Em quais casos isso funciona? Fiz este diagrama para ajudar (válido para a Biblioteca de suporte 23.4.0 a - pelo menos - 25.1.0).

Cheatsheet para desenho


2
É ótimo, mas você deve corrigir o nome do método no bloco estático parasetCompatVectorFromResourcesEnabled
Vikas Patidar

1
setCompatVectorFromResourcesEnabled solução não funciona em 25.3.1, infelizmente
Ilja S.

From 23.3.0 version vector drawables can only be loaded via app:srcCompat or setImageResource()por isso esta solução é obsoleto e não vai funcionar
USER25

ativar setCompatVectorFromSourcesEnabled(true)permite carregar vectordrawables no android:backgroundAndroid 4.x. Então obrigado! (Você precisa agrupar o vetor real em uma única lista de camadas de itens)
Peterdk

14

Nenhuma das outras respostas funcionou. Aqui está como adicionei VectorDrawablea a TextView, você deve usar VectorDrawableCompat.create()ao lidar com VectorDrawablesabaixo 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);
}

Curto, doce e direto ao ponto!


Isso funcionou para o Android P e o nível mínimo 26 da API (meta 28)
MiStr

@MiStr - Também é compatível com versões anteriores :)
Sakiboy

9

No Google: a partir da Biblioteca de suporte Android 23.3.0, os drawables de vetores de suporte podem ser carregados apenas por meio do aplicativo: srcCompat ou setImageResource () ..

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


1
Isso significa que nenhuma solução para agora
Assassino

Tente agrupar seu desenho vetorial na lista de camadas ou no seletor: <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 = "Olá mundo!" /> 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>
Exceção de ponteiro nulo

9

É possível definir diretamente drawables vetoriais em xml, mas você incluiu a estrutura de ligação de dados.

Apenas escreva

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

e envolva todo o layout em uma <layout>tag, para que basicamente seu xml se pareça com:

<?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>

Para ativar a estrutura de ligação de dados, basta adicionar

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

Você não precisa usar outros recursos da biblioteca de ligação

EDITAR:

Obviamente, se você quiser usar gavetas vetoriais pré-pirulito, precisará ativar gavetas vetoriais de suporte usando

vectorDrawables.useSupportLibrary = true

Então, você build.gradleprecisa de 2 novos comandos:

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

graças a rkmax pela observação


É uma boa ideia, mas você precisa escrever um adaptador de ligação para que isso funcione. Aqui está um exemplo de trabalho: gist.github.com/lisawray/78c33f76809d2bcbbec9983e2c141a70
BladeCoder 25/10/16

1
Devo dizer isso funciona para mim, mas você tem que habilitar vectorDrawables.useSupportLibraryem app / build.gradle e também adicionar AppCompatDelegate.setCompatVectorFromResourcesEnabled (true) sobre a atividade
rkmax

I esqueceu de acrescentar DefaultConfig no build.gradleque pode ser a razão pela qual ele não está funcionando
Hans M

Obrigado - você salva vidas!
Van

Esta é uma resposta subestimada!
DYS

6

Analisei todas as respostas e, usando o mais recente Android studio 3.0.1 e a AppCompat Support Library 26.1.0, posso garantir que isso funcione bem.

No arquivo build.gradle (app)

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

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

E em Activity extending, AppcompatActivityinclua esses métodos externos, ou seja, um staticbloco

static {
    AppCompatDelegate.setCompatVectorFromResourcesEnabled(true);
}  

ou se você quiser que isso seja aplicado a todo o aplicativo, inclua essa linha na classe que estende a Applicationclasse

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

Textview em 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>

Funciona bem em qual API? Você experimentou 19 ou 20?
mergulhadores

Você pode mostrar como você usa drawableRightpara TextViewem XML?
mergulhadores

2
Como poucos mencionados acima, se você usar o vetor xml diretamente como drawableLeft, ainda assim obter essa falha ou exceção, a solução alternativa é usar esse vetor xml como um seletor para drawableLeft para Textview. Uso que você pode ver na resposta editada.
Amit Tumkur

1
ele não está indo para o trabalho, você não pode usar vector drawable para TextView diretamente no xml
USER25

Teste-o nas API 19 e 20. Em vez disso, usei AppCompatDelegate.setCompatVectorFromResourcesEnabled na classe de aplicativo. Trabalhando como um encanto!
Red M


5

Estou tão atrasado para responder a essa pergunta quanto me atrapalhei com esse problema. Eu tive o mesmo problema com drawables svg / vector com TextView. Em vez de criar seu próprio desenho personalizado, sou capaz de corrigir meu problema com duas linhas de código, como abaixo:

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

Espero que ajude você.


Não é compatível com pré- Ldispositivos.
Sakiboy 16/05

@ Sakiboy Sim, é, como eu estou usando esse código com o mínimo de API 17.
Rahul Sharma

Não funciona com VectorDrawablestodos os dispositivos executando pré-L, apenas dizendo. Seja cauteloso ao usar esta resposta, pois há APIs mais seguras e precisas para usar.
Sakiboy 16/05

4

Eu projetei uma pequena biblioteca para isso - textview-rich-drawable (também suporta a definição do tamanho e matiz dos drawables compostos).

<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" />

E a dependência

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

insira a descrição da imagem aqui


3

Se você estiver usando a ligação, há outra maneira mágica de ter a mesma abordagem para usar vetores em um TextView. Envolvendo-os como:

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

Isso funcionará magicamente, não investiguei o que está acontecendo nos bastidores, mas acho que o TextView está usando o getDrawablemétodo do AppCompatResourcesou similar.


2

Com base na resposta de Behzad Bahmanyar , notei que não podia usar os atributos normais do android para arquivos png normais:

android:drawableTop
android:drawableBottom
etc

porque seria substituído por nulo em

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

se o app:drawableTopCompatnão foi definido, mas android:drawableTopfoi (por exemplo).

Aqui está a solução completa:

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();
    }
}

Essa resposta deve ser aceita. trabalhar com arquivos png normais e atributos drawableTop, drawableBottom. A resposta aceita não funciona com arquivos png e atributos drawableTop, drawableBottom.
Bhargav Pandya

2

No arquivo build.gradle (app)

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]);
    } 
}

use (Ao vincular dados)

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

Ou (Normal)

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

1

Usando Drawables vetoriais

kotlin

 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

Para compatibilidade com versões anteriores, use:

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

0

Estou usando o adaptador de ligação para resolver este problema

@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)
}

e também usando dessa maneira no meu layout

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

provavelmente vectorDrawables.useSupportLibrary = true na configuração padrão é necessária

Ao utilizar nosso site, você reconhece que leu e compreendeu nossa Política de Cookies e nossa Política de Privacidade.
Licensed under cc by-sa 3.0 with attribution required.