Vector Drawable是一种可缩放的矢量图形,可以在Android应用中使用。下面是使用Vector Drawable的一般步骤:
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24.0"
android:viewportHeight="24.0">
<path
android:fillColor="#FF0000"
android:pathData="M12,3C8.44,3 5.33,5.17 4.05,8.36C4.7,8.34 5.36,8.33 6,8.33C9.53,8.33 12.47,11.47 12.47,16C12.47,19.71 15.18,21.67 16,21.67C16.82,21.67 19.53,19.71 19.53,16C19.53,11.47 22.47,8.33 26,8.33C26.64,8.33 27.3,8.34 27.95,8.36C26.67,5.17 23.56,3 20,3H12Z"/>
</vector>
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/vector_drawable"/>
Drawable drawable = getResources().getDrawable(R.drawable.vector_drawable);
imageView.setImageDrawable(drawable);
这样就可以在Android应用中使用Vector Drawable了。Vector Drawable的一个优点是可以在不同分辨率的屏幕上保持清晰度,而不会失真。