-1
我想動態地將ViewPagers添加到Fragment中。例如,我創建了xml:用不同的ID膨脹ViewPagers
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:id="@+id/tvHeader"
android:textColor="@color/black"
android:textSize="18sp"
android:layout_margin="15dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<android.support.v4.view.ViewPager
android:id="@+id/vpUsers"
android:layout_width="match_parent"
android:layout_height="85dp" />
</LinearLayout>
並使用它膨脹視圖。但ViewPagers顯示不正確。看起來像ViewPagers的相同id的問題。如果我創建ViewPagers編程方式,因爲IDS是requeired但IDS的手動設置是很危險的
java.lang.IllegalStateException: ViewPager with adapter com.raybyt[email protected]11a219d0 requires a view id
同樣的問題:當我刪除android:id="@+id/vpUsers"
我得到了錯誤。
我該如何膨脹或編程創建少數具有不同ID的ViewPagers? (ViewPagers的數目未知)