Android - Listview背景问题

发布于 2024-12-06 18:35:28 字数 3572 浏览 0 评论 0原文

我有一个问题,我知道正确的答案非常简单,但我目前已经尝试了所有方法,但我不知道我做错了什么。在我的项目中,我有以下布局: main.xml

<?xml version="1.0" encoding="utf-8"?>
<TabHost xmlns:android="http://schemas.android.com/apk/res/android"
         android:id="@android:id/tabhost"
         android:layout_width="fill_parent"
         android:layout_height="fill_parent">
    <RelativeLayout
        android:orientation="vertical"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:padding="3dp">
        <FrameLayout
            android:id="@android:id/tabcontent"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:layout_weight="1"/>
        <TabWidget
            android:id="@android:id/tabs"
            android:background="@layout/customtabshape"
            android:layout_width="fill_parent"
            android:layout_height="80px"
            android:layout_alignBottom = "@android:id/tabcontent"
            />
    </RelativeLayout>
</TabHost>

nyheder.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" android:layout_marginBottom="80px">
    <ImageView android:id="@+id/imageView1" android:layout_height="wrap_content" android:src="@drawable/tv2sport" android:layout_width="fill_parent"></ImageView>
<TextView  
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" 
    android:id="@+id/feedtitle" />
<TextView  
    android:layout_width="0px" 
    android:layout_height="0px" 
    android:id="@+id/feeddescribtion"/>
<TextView  
    android:layout_width="0px" 
    android:layout_height="0px" 
    android:id="@+id/feedpubdate"/>
<TextView  
    android:layout_width="0px" 
    android:layout_height="0px" 
    android:autoLink="web"
    android:id="@+id/feedlink"/>
<ListView
    android:id="@android:id/list"
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content"/>
</LinearLayout>

row.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical">
<TextView
    android:id="@+id/listtitle"
    android:textSize="24px"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"/>
<TextView
    android:id="@+id/listpubdate"
    android:textSize="20px"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"/>
</LinearLayout>

rsslist.xml

<?xml version="1.0" encoding="utf-8"?>
<TextView 
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/rowtext"
    android:layout_width="fill_parent"
    android:layout_height="25px"
    android:textSize="10sp"/>

我的问题是,我希望到处都有相同的背景纹理。除了列表本身之外,我可以在任何地方获取它。

根据这篇文章 http://developer.android.com/resources/articles/listview-backgrounds.html

和其他多个,我应该能够通过在列表中使用 android:cacheColorHint="#00000000" 来解决列表中黑色背景的问题。但我几乎尝试过把这条线放在任何地方,但列表中的背景仍然是黑色的。 我做错了什么? (我知道目前没有背景,我这样做不是为了让事情变得更复杂)。

I have a problem, and i know that the answer properly is pretty simple, but I've tried everything at the moment, and I can't figure out what I'm doing wrong. In my project I've got the following layouts:
main.xml

<?xml version="1.0" encoding="utf-8"?>
<TabHost xmlns:android="http://schemas.android.com/apk/res/android"
         android:id="@android:id/tabhost"
         android:layout_width="fill_parent"
         android:layout_height="fill_parent">
    <RelativeLayout
        android:orientation="vertical"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:padding="3dp">
        <FrameLayout
            android:id="@android:id/tabcontent"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:layout_weight="1"/>
        <TabWidget
            android:id="@android:id/tabs"
            android:background="@layout/customtabshape"
            android:layout_width="fill_parent"
            android:layout_height="80px"
            android:layout_alignBottom = "@android:id/tabcontent"
            />
    </RelativeLayout>
</TabHost>

nyheder.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" android:layout_marginBottom="80px">
    <ImageView android:id="@+id/imageView1" android:layout_height="wrap_content" android:src="@drawable/tv2sport" android:layout_width="fill_parent"></ImageView>
<TextView  
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" 
    android:id="@+id/feedtitle" />
<TextView  
    android:layout_width="0px" 
    android:layout_height="0px" 
    android:id="@+id/feeddescribtion"/>
<TextView  
    android:layout_width="0px" 
    android:layout_height="0px" 
    android:id="@+id/feedpubdate"/>
<TextView  
    android:layout_width="0px" 
    android:layout_height="0px" 
    android:autoLink="web"
    android:id="@+id/feedlink"/>
<ListView
    android:id="@android:id/list"
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content"/>
</LinearLayout>

row.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical">
<TextView
    android:id="@+id/listtitle"
    android:textSize="24px"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"/>
<TextView
    android:id="@+id/listpubdate"
    android:textSize="20px"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"/>
</LinearLayout>

rsslist.xml

<?xml version="1.0" encoding="utf-8"?>
<TextView 
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/rowtext"
    android:layout_width="fill_parent"
    android:layout_height="25px"
    android:textSize="10sp"/>

My problem is, that I want the same background texture everywhere. I can get it anywhere but the list itself.

According to this article
http://developer.android.com/resources/articles/listview-backgrounds.html

and multiple others, I should be able to fix my problem with black background in the list, by using android:cacheColorHint="#00000000" inside the list. But I've almost tried putting that line everywhere, and the background in the list is still black.
What am I doing wrong?
(I know that there is no background at the moment, I did that not to make things more complicated).

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

征﹌骨岁月お 2024-12-13 18:35:28

您只需

android:scrollingCache="false" 

在 xml 文件中添加 ListView 即可。

You need to just add

android:scrollingCache="false" 

in ListView in xml file.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文