Android开发使用矢量图标

1.使用Android Studio自带的矢量图,选择darwable文件夹点击右键右键 ==》New ==》Vector Asset

Android开发使用矢量图标_第1张图片

2.Asset type 选择Clip art ,然后点击 Clip art 后面的按钮,就会弹出图标列表窗口,你可以在里面选择你想用的图标。
确定图标后,你还可以修改图标的名字方便后面引用,还可以选择改图标的颜色,可以拖动Opacity拖动条来改变透明度。

Android开发使用矢量图标_第2张图片
Android开发使用矢量图标_第3张图片

3.在xml布局文件中使用图标
(我这里使用了三个图标)


<LinearLayout  xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="60dp"
    android:orientation="horizontal">
        <TextView
            android:id="@+id/textView1"
            android:drawableTop="@drawable/blue_message_24"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:gravity="center"
            android:layout_weight="1"
            android:text="消息" />
        <TextView
            android:id="@+id/textView2"
            android:drawableTop="@drawable/baseline_group_24"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:gravity="center"
            android:layout_weight="1"
            android:text="联系人" />
        <TextView
            android:id="@+id/textView3"
            android:drawableTop="@drawable/baseline_heat_pump_24"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_weight="1"
            android:gravity="center"
            android:text="动态" />
LinearLayout>

效果如下:

Android开发使用矢量图标_第4张图片

4.下载使用其他图标

除了上面自带的图标,你还可以去其他图标或素材网站下载矢量图标,比如:iconfont-阿里巴巴矢量图标库

Android开发使用矢量图标_第5张图片

下载SVG格式的图标后,Android Studio 里选择 darwable 文件夹点击右键右键 ==》New ==》 Vector Assset。
然后 Asset type 选项选择 Local file ,把下载的图标路径填上去就可以导入到 Android Studio 里使用了。

Android开发使用矢量图标_第6张图片

你可能感兴趣的:(安卓,android,android,studio,安卓开发,安卓图标使用)