如何从可绘制的 xml 形状中获取位图。我究竟做错了什么?
影子.xml
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle" >
<gradient
android:angle="270.0"
android:endColor="@android:color/transparent"
android:startColor="#33000000"
android:type="linear" />
<size android:height="7.0dip" />
</shape>
我从drawable中检索位图的方法:
private Bitmap getBitmap(int id) {
return BitmapFactory.decodeResource(getContext().getResources(), id);
}
当传入的 id 是shadow.xml可绘制 id时,getBitmap() 返回 null 。