2011-08-29 51 views

回答

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>