1

编辑:

我在为我的 ListView 设置背景图像时遇到问题。在活动的图形视图中,它看起来不错,但在手机上,根本没有背景。这是我的活动 .xml 代码:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"  
android:gravity="bottom|fill_vertical" 
android:background="@drawable/background">

   <ListView
      android:id="@+id/listPlan"
      android:layout_width="fill_parent"
      android:layout_height="fill_parent"
      android:divider="@null"
      android:cacheColorHint="#00000000" 
      android:listSelector="@android:color/transparent" 
      android:scrollingCache="false" 
      android:dividerHeight="5dp" >

   </ListView>

</LinearLayout>

如果它对我的问题有意义的话,它就是 GroupActivity 中的一项活动。我已经尝试了一切 - 给予android:backgroundfor ListView, for LinearLayout,甚至是父母活动(GroupActivity),android:layout我可以改变每个项目的值,没有任何帮助。

<TextView xmlns:android="http://schemas.android.com/apk/res/android"
     android:id="@+id/text"
     android:layout_width="fill_parent"
     android:layout_height="fill_parent" 
     android:textSize="20sp"
     android:padding="15dp" 
     android:scrollHorizontally="true" >
</TextView>

这就是我的 Single List Item 的样子,也许有一些错误?

只有当我编辑我的<TextView>并给出它时,我才看到差异android:background,每个人都尝试改变背景,这个列表视图没有被发现 - 例如我已经改变android:cacheColorHint="#00000000"-android:cacheColorHint="#FFFFFFFF"没有发生任何事情。

我会再试一次 - 在将布局从线性更改为相对之后什么也没发生,但这(感谢@Sam)让我思考。也许我必须在我的 AndroidManifest.xml 中添加一些东西?如果代码正常工作,也许这个父母GroupActivity对 有更大的影响ListView,然后我想。不幸的是我不能放图片,但你可以ListView在这里看到这两种状态: https ://www.dropbox.com/sh/y5dgibei5uq9kv9/afeIvgW18g

哇,这个问题有点奇怪,因为当我试图设置android:textColor为我ListView没有任何改变! 这是我的styles.xml:

<resources>

<!--
    Base application theme, dependent on API level. This theme is replaced
    by AppBaseTheme from res/values-vXX/styles.xml on newer devices.
-->
<style name="AppBaseTheme" parent="android:Theme.Light">
    <!--
        Theme customizations available in newer API levels can go in
        res/values-vXX/styles.xml, while customizations related to
        backward-compatibility can go here.
    -->
</style>

<!-- Application theme. -->
<style name="AppTheme" parent="AppBaseTheme">
    <!-- All customizations that are NOT specific to a particular API-level can go here. -->
</style>

</resources>

感谢您的每一个回复。

最后编辑!

好的,问题解决了,因为没有任何帮助,我尝试了另一种方法,只是在代码中设置了我的 ListView 背景:

if(getResources().getConfiguration().orientation == Configuration.ORIENTATION_PORTRAIT)
        list.setBackgroundResource(R.drawable.background);
    else list.setBackgroundResource(R.drawable.background_landscape);

现在一切正常!谢谢大家的每一个回复。平安出来。

4

3 回答 3

0

尝试这个 :

      <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
      android:layout_width="match_parent"
     android:layout_height="match_parent"   
     android:orientation="vertical" >


      <ListView
       android:id="@+id/contract_diary_list"
       android:layout_width="fill_parent"
       android:layout_height="wrap_content"        
       android:fadingEdge="none"        
       android:divider="@null"
       android:scrollingCache="false"
      android:listSelector="@android:color/transparent"
     >
     </ListView> 

   </LinearLayout>
于 2013-06-11T11:57:33.273 回答
0

这解决了我的问题:-

android:cacheColorHint="#0000"

将其添加到您的列表视图中:-

<ListView
android:id="@+id/listPlan"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:cacheColorHint="#0000">

"#0000" -> 透明色码

于 2013-06-11T11:30:21.720 回答
0

只需将其添加到 listview.xml 文件中

android:cacheColorHint="#00000000"

或者您可以使用Expandable Listview
Edited :

使用Relative layout代替,linear layout请检查../

 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" >

    <ListView
        android:id="@+id/listView1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentTop="true"
        android:layout_centerHorizontal="true"
        android:background="@drawable/ic_launcher" 
        android:cacheColorHint="#00000000">
    </ListView>

</RelativeLayout>
于 2013-06-11T11:32:19.590 回答