在我的Android應用程序,以獲取來自不同的片段變量,我有4個片段的活動。所有的片段都有相同的確切字段,所以它們都從相同的xml文件中膨脹並具有相同的java類。 但是,我需要獲取存儲在其中每個數據中的數據,因爲用戶將在每個數據中輸入內容。那麼,如果他們都擁有相同的課程,我將如何獲得數據呢?如何使用同一類
activity_success.xml
<Button
android:id="@+id/continue_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/cont"
/>
<Button
android:id="@+id/export_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/export"
android:layout_toRightOf="@id/continue_button"
/>
<fragment android:name="org.bah.bu.SuccessFragment"
android:id="@+id/red1_success"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_below="@id/continue_button"
/>
<fragment android:name="org.bah.bu.SuccessFragment"
android:id="@+id/red2_success"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_below="@id/red1_success"
/>
fragment_success.xml
<CheckBox
android:id="@+id/far"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/far"
/>
<CheckBox
android:id="@+id/lifted"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/lifted"
/>
發表您的代碼 - – minhaz
@minhaz貼吧 – rasen58