如何在ViewPager示例中删除白框

时间:2011-08-29 15:19:45

标签: android android-layout

人们! 我检查了Android Compability lib中的那些样本。我找不到如何删除那些标记为红色的白色框架(adown和页面之间):

enter image description here

1 个答案:

答案 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>