Android SVG 兼容低版本API

在 Android 中使用 SVG矢量圖 來替代傳統(tǒng)的圖片有很多好處搏屑,比如自適應(yīng)低缩,體積小堪旧,不失真等糠雨。但是在API21 以下版本使用時(shí)會(huì)有兼容性問題才睹,在 Androi 5.0 以下的設(shè)備可能會(huì)報(bào)這樣的錯(cuò)誤:

......
Binary XML file line #1: invalid drawable tag vector
......
Caused by: android.content.res.Resources$NotFoundException: File res/drawable/you_svg_name.xml from drawable resource ID #0x7f02004b
......

那要怎么做呢?

一、配置琅攘。
詳細(xì)請(qǐng)查看 vector-asset-studio

參看下面的代碼:

apply plugin: 'com.android.application'

android {
    compileSdkVersion 27
    defaultConfig {
        applicationId "com.example.app"
        minSdkVersion 16
        targetSdkVersion 27
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
        vectorDrawables.useSupportLibrary = true
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
    buildToolsVersion '27.0.2'
}

androidExtensions {
    experimental = true
}

dependencies {
    implementation fileTree(include: ['*.jar'], dir: 'libs')
    implementation 'com.android.support:appcompat-v7:27.0.2'
    implementation 'com.android.support:design:27.0.2'
    implementation 'com.android.support:support-vector-drawable:27.0.2'
    implementation 'com.android.support:support-v4:27.0.2'
    implementation 'com.android.support.constraint:constraint-layout:1.0.2'
    implementation 'com.android.support:animated-vector-drawable:27.0.2'
}

1: 添加依賴

implementation 'com.android.support:animated-vector-drawable:27.0.2'

2:在 defaultConfig 下面添加聲明

android {
  defaultConfig {
    vectorDrawables.useSupportLibrary = true
  }
}

3:在 Activity 的 oncreate 中加入如下代碼,建議在BaseActivity中添加

@Override
protected void onCreate(@Nullable Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    AppCompatDelegate.setCompatVectorFromResourcesEnabled(true);
    //......
}

二垮庐、使用。
配置好了可以開始使用,一般有兩個(gè)場景坞琴,一個(gè)是 TextView哨查、EditText 的 drawableLeft、Right剧辐、Top解恰、Bottom,一個(gè)是作為 ImageView 背景 background浙于。

  1. 用 srcCompat 代替 src.
  2. 設(shè)置背景 可以將你的 svg 資源用 selector 標(biāo)簽包裹起來調(diào)用护盈。
  <?xml version="1.0" encoding="utf-8"?>
  <selector xmlns:android="http://schemas.android.com/apk/res/android">
        <item android:drawable="@drawable/your_svg_name"></item>
  </selector>
  1. 在 EditText 中使用 android:drawableLeft 和 android:drawableStart 時(shí),有可能還會(huì)報(bào)錯(cuò)羞酗,這時(shí)你可以參照第二條使用腐宋。
    <EditText
       android:id="@+id/id_edit"
       style="@style/inputNameEt"
       android:drawableLeft="@drawable/drawable_home_selector"
       android:drawableStart="@drawable/drawable_home_selector"  />

4.有部分控件點(diǎn)擊需要selector,我貼出自己使用的Image以及Color的selector:

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
 <!-- Non focused states -->
 <item android:drawable="@drawable/home_search_norm" android:state_focused="false" android:state_pressed="false" android:state_selected="false" />
 <item android:drawable="@drawable/home_search_sel" android:state_focused="false" android:state_pressed="false" android:state_selected="true" />
 <!-- Focused states -->
 <item android:drawable="@drawable/home_search_sel" android:state_focused="true" android:state_pressed="false" android:state_selected="false" />
 <item android:drawable="@drawable/home_search_sel" android:state_focused="true" android:state_pressed="false" android:state_selected="true" />
 <!-- Pressed -->
 <item android:drawable="@drawable/home_search_sel" android:state_pressed="true" android:state_selected="true" />
 <item android:drawable="@drawable/home_search_sel" android:state_pressed="true" />
</selector>
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
 <!-- Selected -->
 <item android:state_selected="true" android:color="@color/home_selected_color" />
 <!-- Active -->
 <item android:state_active="true" android:color="@color/home_selected_color"/>
 <item android:state_selected="false" android:color="@color/home_normal_color" />
 <item android:state_active="false" android:color="@color/home_normal_color"/>
</selector>

使用的時(shí)候檀轨,如需更換樣式可調(diào)用 (使用場景如首頁導(dǎo)航欄切換樣式)

public void setSelected(boolean selected)胸竞;

以上。

三参萄、自定義控件
對(duì)于textview的drawableLeft卫枝,自己定義了一個(gè)可設(shè)置位置和大小的控件,有需要可以copy讹挎。
下面貼出自定義過程和使用方法:

  1. 首先在 “res / values / attrs.xml” 的 attrs.xml 文件中添加自定義 TextView 屬性:
  <declare-styleable name="CustomTextView">
      <attr name="drawable" format="reference"/>
      <attr name="drawableWidth" format="dimension"/>
      <attr name="drawableHeight" format="dimension"/>
      <attr name="position" format="integer"/>
  </declare-styleable>
  1. 然后像這樣創(chuàng)建自定義的 TextView 類:
 import android.content.Context;
 import android.content.res.Resources;
 import android.content.res.TypedArray;
 import android.graphics.Canvas;
 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;
 import android.util.TypedValue;

 public class CustomTextView extends AppCompatTextView {
 
     private Drawable mDrawable;//設(shè)置的圖片
     private int mScaleWidth; // 圖片的寬度
     private int mScaleHeight;// 圖片的高度
     private int mPosition;// 圖片的位置 1左2上3右4下
 
     public CustomTextView(Context context) {
         super(context);
     }
 
     public CustomTextView(Context context, AttributeSet attrs) {
         super(context, attrs);
         init(context, attrs);
     }
 
     public CustomTextView(Context context, AttributeSet attrs, int defStyleAttr) {
         super(context, attrs, defStyleAttr);
         init(context, attrs);
     }
 
     public void init(Context context, AttributeSet attrs) {
         TypedArray typedArray = context.obtainStyledAttributes(attrs,
                 R.styleable.CustomTextView);
         if (null != typedArray) {
 
             if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
                 mDrawable = typedArray.getDrawable(R.styleable.CustomTextView_drawable);
             } else {
                 int mDrawableId = typedArray.getResourceId(R.styleable.CustomTextView_drawable, -1);
                 if (mDrawableId != -1)
                     mDrawable = AppCompatResources.getDrawable(context, mDrawableId);
             }
             mScaleWidth = typedArray
                     .getDimensionPixelOffset(
                             R.styleable.CustomTextView_drawableWidth,
                             dip2px(context, 20));
             mScaleHeight = typedArray.getDimensionPixelOffset(
                     R.styleable.CustomTextView_drawableHeight,
                     dip2px(context, 20));
             mPosition = typedArray.getInt(R.styleable.CustomTextView_position, 3);
             typedArray.recycle();
         }
     }
 
     @Override
     protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
         super.onMeasure(widthMeasureSpec, heightMeasureSpec);
         if (mDrawable != null) {
             mDrawable.setBounds(0, 0, mScaleWidth, mScaleHeight);
 
         }
     }
 
     @Override
     protected void onDraw(Canvas canvas) {
         super.onDraw(canvas);
         switch (mPosition) {
             case 1:
                 this.setCompoundDrawables(mDrawable, null, null, null);
                 break;
             case 2:
                 this.setCompoundDrawables(null, mDrawable, null, null);
                 break;
             case 3:
                 this.setCompoundDrawables(null, null, mDrawable, null);
                 break;
             case 4:
                 this.setCompoundDrawables(null, null, null, mDrawable);
                 break;
             default:
                 break;
         }
     }
 
     public static int dip2px(Context context, int dpValue) {
         Resources r = context.getResources();
         float px = TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP,
                 dpValue, r.getDisplayMetrics());
         return (int) px;
     }
 }

  1. 現(xiàn)在校赤,可以通過自定義屬性在任何布局中輕松使用它:
   <YOUR_PACKAGE.CustomTextView
       android:id="@+id/id_text"
       android:layout_width="wrap_content"
       android:layout_height="wrap_content"
       app:drawable="@drawable/drawable_home_selector"
       app:drawableHeight="24dp"
       app:drawableWidth="24dp"
       app:position="1" />
           

你可以用 Button,EditText 和 RadioButton 做類似的事情筒溃,因?yàn)樗鼈兪菑?TextView 派生的马篮。
如有錯(cuò)誤請(qǐng)指出,謝謝怜奖。

注意事項(xiàng):
在項(xiàng)目根目錄的build.gradle文件中的gradle插件版本須高于1.5.0浑测,現(xiàn)在一般3.x的Android Studio 新建的項(xiàng)目的Gradle版本都比這高,舊項(xiàng)目如需要升級(jí)歪玲,建議翻墻或者下載離線文件迁央。

// SVG:適用于 Gradle 的 Android 插件 1.5.0 或更高版本
buildscript {
    
    repositories {
        google()
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.1.2'
    }
}

Android :vector-asset-studio
stackoverflow :Binary XML file line #1: invalid drawable tag vector

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市滥崩,隨后出現(xiàn)的幾起案子岖圈,更是在濱河造成了極大的恐慌,老刑警劉巖夭委,帶你破解...
    沈念sama閱讀 206,839評(píng)論 6 482
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件幅狮,死亡現(xiàn)場離奇詭異募强,居然都是意外死亡,警方通過查閱死者的電腦和手機(jī)崇摄,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,543評(píng)論 2 382
  • 文/潘曉璐 我一進(jìn)店門擎值,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人逐抑,你說我怎么就攤上這事鸠儿。” “怎么了厕氨?”我有些...
    開封第一講書人閱讀 153,116評(píng)論 0 344
  • 文/不壞的土叔 我叫張陵进每,是天一觀的道長。 經(jīng)常有香客問我命斧,道長田晚,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 55,371評(píng)論 1 279
  • 正文 為了忘掉前任国葬,我火速辦了婚禮贤徒,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘汇四。我一直安慰自己接奈,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,384評(píng)論 5 374
  • 文/花漫 我一把揭開白布通孽。 她就那樣靜靜地躺著序宦,像睡著了一般。 火紅的嫁衣襯著肌膚如雪背苦。 梳的紋絲不亂的頭發(fā)上互捌,一...
    開封第一講書人閱讀 49,111評(píng)論 1 285
  • 那天,我揣著相機(jī)與錄音糠惫,去河邊找鬼疫剃。 笑死,一個(gè)胖子當(dāng)著我的面吹牛硼讽,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播牲阁,決...
    沈念sama閱讀 38,416評(píng)論 3 400
  • 文/蒼蘭香墨 我猛地睜開眼固阁,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了城菊?” 一聲冷哼從身側(cè)響起备燃,我...
    開封第一講書人閱讀 37,053評(píng)論 0 259
  • 序言:老撾萬榮一對(duì)情侶失蹤,失蹤者是張志新(化名)和其女友劉穎凌唬,沒想到半個(gè)月后并齐,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 43,558評(píng)論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,007評(píng)論 2 325
  • 正文 我和宋清朗相戀三年况褪,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了撕贞。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 38,117評(píng)論 1 334
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡测垛,死狀恐怖捏膨,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情食侮,我是刑警寧澤号涯,帶...
    沈念sama閱讀 33,756評(píng)論 4 324
  • 正文 年R本政府宣布,位于F島的核電站锯七,受9級(jí)特大地震影響链快,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜眉尸,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,324評(píng)論 3 307
  • 文/蒙蒙 一久又、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧效五,春花似錦地消、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,315評(píng)論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至戒劫,卻和暖如春半夷,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背迅细。 一陣腳步聲響...
    開封第一講書人閱讀 31,539評(píng)論 1 262
  • 我被黑心中介騙來泰國打工巫橄, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人茵典。 一個(gè)月前我還...
    沈念sama閱讀 45,578評(píng)論 2 355
  • 正文 我出身青樓湘换,卻偏偏與公主長得像,于是被迫代替她去往敵國和親统阿。 傳聞我的和親對(duì)象是個(gè)殘疾皇子彩倚,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,877評(píng)論 2 345

推薦閱讀更多精彩內(nèi)容