为什么listFragment有黑色背景?

时间:2013-06-10 04:05:02

标签: android android-layout android-listfragment

我构建了listFragment,但运行它显示黑色背景。

看起来就是这样,左边是eclipse布局编辑器中的layout.xml外观,右边是模拟器中的ruuning:

enter image description here

我构建另一个要比较的新项目,这看起来就是我想要的白色背景黑色文字:

enter image description here

我比较两个项目..每件事都匹配.. values/styles.xml values-v11/styles.xmlvalues-v14/styles.xml在两个项目中相同。

这里的选择也是一样的: enter image description here

这是怎么回事????

1 个答案:

答案 0 :(得分:0)

尝试以下解决方案,它将起作用

在您的xml布局添加属性android:background上分配您的颜色或可绘制资源。

<ListView 
   android:id="@+id/hlveqproducts"
   android:layout_width="match_parent"
   android:layout_height="wrap_content"
   android:background="@android:color/white"
  />