我以为我成功地创建了一个条纹 Android ListView,其中列表项的背景颜色交替出现。当我使用 Theme.Holo.Light 作为我的应用程序的主题(在清单中)时,它可以完美地工作。但是,当我为我的应用程序定义一个自定义主题时,使用自定义背景颜色,条纹消失了,取而代之的是单一背景颜色在我的主题中定义。 为什么我的自定义主题的背景颜色不能被 getView() 中的 setBackgroundColor() 覆盖?我该如何解决这个问题? 谢谢!
更新:我已经意识到应用程序背景正在我的视图背景前呈现!(另外,在我的布局中的 ProgressBar 前面,完全遮住它。)如果我将 @color/background_color 设置为完全透明,则条纹会显示出来。那么,问题来了,为什么我的主题的背景渲染在一些视图/背景前面?
主题:
<style name="Basic">
<item name="android:textColor">#000000</item>
<item name="android:background">@color/background_color</item>
</style>
获取视图():
@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;
}