単一のフラグメントを横向きモードで 2 回、縦向きモードで 1 回使用したいと考えています。
横向きモードの xml:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/linearLayout1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#ffffff" android:orientation="horizontal" >
<fragment class="com.afghanmag.android.StoreViewFragment"
android:id="@+id/categories" android:layout_weight="1"
android:layout_width="0px"
android:layout_height="match_parent" />
<fragment class="com.afghanmag.android.StoreViewFragment"
android:id="@+id/library" android:layout_weight="1"
android:layout_width="0px"
android:layout_height="match_parent" />
</LinearLayout>
縦向きモードのビューをデザインするにはどうすればよいですか?