人们! 我检查了Android Compability lib中的那些样本。我找不到如何删除那些标记为红色的白色框架(adown和页面之间):
答案 0 :(得分:5)
在fragment_pager_list.xml文件中,从根LinearLayout中删除背景。
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@android:drawable/gallery_thumb"> <-- Remove this background
</LinearLayout>
所以你有:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
</LinearLayout>