Android - Listview背景问题
我有一个问题,我知道正确的答案非常简单,但我目前已经尝试了所有方法,但我不知道我做错了什么。在我的项目中,我有以下布局: 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您只需
在 xml 文件中添加 ListView 即可。
You need to just add
in ListView in xml file.