我以为我成功创建了一个条带化的Android ListView,其中列表项的背景颜色交替出现。当我使用Theme.Holo.Light作为我的应用程序的主题(在Manifest中)时它完美地工作。 但是,当我为我的应用程序定义自定义主题时,使用自定义背景颜色,条纹消失,取而代之的是我的主题中定义的单一背景颜色。 为什么我的自定义主题的背景颜色无法被getView()中的setBackgroundColor()覆盖?我该如何解决这个问题?谢谢!
更新:我意识到应用程序背景正在我的View背景前呈现! (另外,在我的布局中的ProgressBar前面,完全遮盖它。)如果我将@ color / background_color设置为完全透明,则条带显示。那么,问题是,为什么我的主题背景渲染在一些视图/背景前?
主题:
<style name="Basic">
<item name="android:textColor">#000000</item>
<item name="android:background">@color/background_color</item>
</style>
getView():
@Override
public View getView(int position, View convertView, ViewGroup parent) {
LinearLayout itemView;
Resources res = getResources();
int[] colors = new int[] {res.getColor(R.color.list_stripe_1),res.getColor(R.color.list_stripe_2)};
if (convertView == null){
itemView = new LinearLayout(getContext());
String inflater = Context.LAYOUT_INFLATER_SERVICE;
LayoutInflater viewInflater;
viewInflater = (LayoutInflater)getContext().getSystemService(inflater);
viewInflater.inflate(resource, itemView, true);
} else {
itemView = (LinearLayout) convertView;
}
////Omitting code for populating TextViews..
itemView.setBackgroundColor(colors[position%colors.length]);
return itemView;
}
答案 0 :(得分:0)
而不是在主题中使用设置android:background,设置android:windowBackground。我没有完全调查为什么不可能用setBackgroundColor()覆盖主题设置背景,或者为什么使用android:background导致微调器被遮挡,但使用windowBackground代替解决了问题。