Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> Android 項目使用矢量圖

Android 項目使用矢量圖

編輯:關於Android編程

1、依賴庫和配置:

    compile 'com.android.support:support-vector-drawable:25.0.1'
    compile 'com.android.support:appcompat-v7:25.0.1'
android {
    defaultConfig {
         vectorDrawables.useSupportLibrary = true
    }
}

2、創建矢量圖
右鍵 res 目錄創建 Vector Asset 資源

3、使用矢量圖

    xmlns:app="http://schemas.android.com/apk/res-auto"
    

只能通過代碼設置 View 的背景

Resources resources = context.getResources(Resources, int, Theme);
Theme theme = context.getTheme();
Drawable drawable = VectorDrawableCompat.create(resources, R.drawable.vector_drawable, theme);
view.setBackground(drawable);

4、使用美工的svg
使用 Android Studio 的 SVG 工具將一個 SVG 文件生成 VectorDrawable 資源文件

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved