このレイアウトを表示したい: 2 つのフラグメント、最初の 1 つは反時計回りに 90 度回転したもの (レイアウト) が画面の左側に貼り付き、2 番目のフラグメントが画面の右側の残りのスペースを埋めます。
これは私が達成したいことです:
このレイアウトを使用して、それらを上下に浮かせて表示します。
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_margin="0dp"
android:orientation="vertical"
android:padding="0dp"
tools:context=".StartActivity" >
<fragment
android:id="@+id/first"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="0dp"
android:background="#dddddd"
android:padding="10dp" />
<fragment
android:id="@+id/second"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_margin="0dp"
android:layout_weight="1"
android:background="#333333"
android:padding="10dp" />
</LinearLayout>
編集:
問題は、API レベル 11+ をサポートしている間、フラグメントを回転させることができず、フラグメントのレイアウトが正しく anlingnt であることを確認できないことです。