出于某种原因,每当我通过我的项目清单提出时,我的清单中的背景就消失了,重新出现,产生了我真心想要的“flicker”效应。 我在以下网址尝试了这一建议:。 如何使名单在安乐文中透明? 但它出于某种原因没有工作。 任何建议?
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/screenLayout"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/background"
>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:background="@color/title_background"
android:text="@string/whatsnew_title"
>
</TextView>
<ListView
android:id="@android:id/list"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
</ListView>
</LinearLayout>