这是我的自定义选择器(StateListDrawable)
<selector
xmlns:android="http://schemas.android.com/apk/res/android">
<item
android:drawable="@drawable/common_cell_background" />
<item
android:state_pressed="true"
android:drawable="@drawable/common_cell_background_highlight" />
<item
android:state_focused="true"
android:drawable="@drawable/common_cell_background_highlight" />
<item
android:state_selected="true"
android:drawable="@drawable/common_cell_background_highlight" />
</selector>
common_cell_background和common_cell_background_highlight都是XML。下列代码:
common_cell_background.xml
<bitmap
xmlns:android="http://schemas.android.com/apk/res/android"
android:src="@drawable/common_cell_background_bitmap"
android:tileMode="repeat"
android:dither="true">
</bitmap>
common_cell_background_highlight.xml
<bitmap
xmlns:android="http://schemas.android.com/apk/res/android"
android:src="@drawable/common_cell_background_bitmap_highlight"
android:tileMode="repeat"
android:dither="true">
</bitmap>
位图也完全相同。高亮只是稍微亮了一点,没有其他的区别。两个位图都是PNG文件。
现在我设置
convertView.setBackgroundResource(R.drawable.list_item_background);
问题就在这里。common_cell_background没有重复,它被拉伸了。但令人惊讶的是,当我触摸我的列表中的单元格时,背景更改为common_cell_background_highlight,猜猜会发生什么?一切都很好,就像它应该重复的那样。我不知道问题在哪里,为什么我的背景不重复,而高光做。任何想法吗?
这是一个错误,它在ICS中被修复了,参见这个答案:https://stackoverflow.com/a/7615120/1037294
这是一个解决方法:https://stackoverflow.com/a/9500334/1037294
注意,这个解决方法只适用于BitmapDrawable
,对于其他类型的drawables,比如StateListDrawable
,你需要做额外的工作。下面是我使用的:
public static void fixBackgrndTileMode(View view, TileMode tileModeX, TileMode tileModeY) {
if (view != null) {
Drawable bg = view.getBackground();
if (bg instanceof BitmapDrawable) {
BitmapDrawable bmp = (BitmapDrawable) bg;
bmp.mutate(); // make sure that we aren't sharing state anymore
bmp.setTileModeXY(tileModeX, tileModeY);
}
else if (bg instanceof StateListDrawable) {
StateListDrawable stateDrwbl = (StateListDrawable) bg;
stateDrwbl.mutate(); // make sure that we aren't sharing state anymore
ConstantState constantState = stateDrwbl.getConstantState();
if (constantState instanceof DrawableContainerState) {
DrawableContainerState drwblContainerState = (DrawableContainerState)constantState;
final Drawable[] drawables = drwblContainerState.getChildren();
for (Drawable drwbl : drawables) {
if (drwbl instanceof BitmapDrawable)
((BitmapDrawable)drwbl).setTileModeXY(tileModeX, tileModeY);
}
}
}
}
}