我有一个问题,我知道答案非常简单,但我现在已经尝试了所有的东西,我无法弄清楚我做错了什么。在我的项目中,我有以下布局: 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”修复列表中黑色背景的问题。但我差点把这条线放到各处,列表中的背景仍然是黑色的。 我究竟做错了什么? (我知道目前没有背景,我这样做不是为了让事情变得更复杂)。
答案 0 :(得分:0)
您只需添加
即可android:scrollingCache="false"
在xml文件中的ListView中。