0
我有一個活動與ListView.I想設置爲一個簡單的白色圖片在右下角有一個標誌的背景。我的問題是,當我設置爲背景圖片它有點'坐在'我的listView.Making的TextViews似乎褪色。如何有效地添加背景沒有這些副作用?感謝您的時間。在活動中添加背景使我的視圖看起來褪色
編輯:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/bg">
<dragNDropAdapter.DragNDropListView
android:id="@+id/android:list"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
</dragNDropAdapter.DragNDropListView>
</RelativeLayout>
你在ListView上設置背景嗎?如果是這樣,如果你將它設置爲ListView父級的背景,那該怎麼辦? (如果您從佈局文件中提供屏幕截圖或代碼片段,通常可以更容易地解決這些問題。) – Karakuri
不,我將它設置爲佈局的背景,也就是listView的父項。我將在一分鐘後發佈xml: ) – Libathos