虽然我找不到任何 SDK 版本限制LayerDrawable
(在 API 级别 1 中添加),但我用作背景的版本取决于 minSdkVersion:如果它是 15 或更低,则背景是完全黑色的,如果是19 或更高版本 (KitKat<),图层按预期显示。
我正在以编程方式替换图层列表中的第一项。这是我使用LayerDrawable
该类的方式(尽管应该没有任何问题):
BitmapDrawable bitmapDrawable = (BitmapDrawable) resources.getDrawable(R.drawable.xyz1);
bitmapDrawable.setColorFilter(getColor(), PorterDuff.Mode.MULTIPLY);
bitmapDrawable.setTileModeXY(TileMode.REPEAT, TileMode.REPEAT);
LayerDrawable bgDrwbl = (LayerDrawable) resources.getDrawable(R.drawable.mylayerdrawable);
bgDrwbl.setDrawableByLayerId(R.id.frameBitmap, bitmapDrawable);
int sdk = android.os.Build.VERSION.SDK_INT;
if(sdk < android.os.Build.VERSION_CODES.JELLY_BEAN) {
v.setBackgroundDrawable(bgDrwbl);
} else {
v.setBackground(bgDrwbl);
}
mylayerdrawable 如下所示:
<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
<item
android:id="@+id/frameBitmap"
android:left="@dimen/card_frame_width"
android:right="@dimen/card_frame_width"
android:top="@dimen/card_frame_width"
android:bottom="@dimen/card_frame_width" >
<bitmap
android:tileMode="repeat"/>
</item>
<item>
<shape android:shape="rectangle" >
<stroke
android:height="@dimen/card_frame_width"
android:width="@dimen/card_frame_width"
android:color="#000000" />
<corners android:radius="4dp" />
</shape>
</item>
<item
android:left="0.4dp"
android:right="0.4dp"
android:top="0.4dp"
android:bottom="0.4dp">
<shape android:shape="rectangle" >
<stroke
android:height="1.8dp"
android:width="1.8dp"
android:color="#EAEAEA" />
<corners android:radius="4dp" />
</shape>
</item>
bgDrwbl
在调试时,我注意到minSdkVersion=15 与 19 相比缺少以下成员:
LayerDrawable.mLayerState.mAutoMirrored
LayerDrawable.mLayoutDirection
(基类成员Drawable
:)
如果有人像我一样使用 LayerDrawable,我不知道它们中的任何一个是否至关重要(?),但我既没有收到任何警告,也没有找到任何关于在LayerDrawable
不同 SDK 版本中使用 's 的建议。你有什么提示吗?