複数の画面をサポートするアプリケーションを開発しています。通常の画面では、ビューフリッパー内にレイアウトを設定して、アイコンが混雑しないようにしています。しかし、私が大画面でやりたいことは、viewflipper を使用して画面を利用することなく、すべてのアイコンを 1 つのレイアウトに配置することです。
通常の画面のレイアウトは次のとおりです。
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@color/lighterred"
android:layout_gravity="center"
android:orientation="vertical" >
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:drawableLeft="@drawable/logo"
android:layout_gravity="center"
android:text="@string/app_name"
android:textSize="30sp"
android:padding="15dp"
android:textStyle="bold"
android:textColor="@color/white"
android:contentDescription="@string/app_name" />
<ViewFlipper
android:id="@+id/mainFlipper"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<LinearLayout
android:background="@color/white"
android:layout_width="fill_parent"
android:layout_height="match_parent"
android:gravity="center_vertical|center"
android:orientation="vertical" >
<TextView
android:id="@+id/tvMainNote"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textStyle="bold"
android:text="@string/slidetoleft" />
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<Button
android:id="@+id/ibSymptoms"
android:layout_width="110dp"
android:layout_height="wrap_content"
android:padding="5dp"
android:contentDescription="@string/app_name"
android:text="@string/symptoms"
android:textStyle="bold"
android:textColor="@color/black"
android:layout_margin="20dp"
android:background="@drawable/custom_button"
android:drawableTop="@drawable/symptoms" />
<Button
android:id="@+id/ibConditions"
android:layout_width="110dp"
android:layout_height="wrap_content"
android:padding="5dp"
android:contentDescription="@string/app_name"
android:text="@string/conditions"
android:textStyle="bold"
android:layout_margin="20dp"
android:textColor="@color/black"
android:background="@drawable/custom_button"
android:drawableTop="@drawable/conditions" />
<Button
android:id="@+id/ibMedicalAssessment"
android:layout_width="110dp"
android:layout_height="wrap_content"
android:padding="5dp"
android:contentDescription="@string/app_name"
android:text="@string/medicalassessment"
android:textStyle="bold"
android:textColor="@color/black"
android:layout_margin="20dp"
android:background="@drawable/custom_button"
android:drawableTop="@drawable/med_assessments" />
<Button
android:id="@+id/ibProfile"
android:layout_width="110dp"
android:layout_height="wrap_content"
android:padding="5dp"
android:contentDescription="@string/app_name"
android:text="@string/profile"
android:textStyle="bold"
android:layout_margin="20dp"
android:textColor="@color/black"
android:background="@drawable/custom_button"
android:drawableTop="@drawable/profile" />
</LinearLayout> <!-- 2nd row -->
</LinearLayout>
<LinearLayout
android:background="@color/white"
android:layout_width="fill_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:gravity="center_vertical|center" >
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<Button
android:id="@+id/ibTests"
android:layout_width="110dp"
android:layout_height="wrap_content"
android:padding="5dp"
android:contentDescription="@string/app_name"
android:text="@string/tests"
android:textStyle="bold"
android:layout_margin="20dp"
android:textColor="@color/black"
android:background="@drawable/custom_button"
android:drawableTop="@drawable/tests" />
<Button
android:id="@+id/ibTreatment"
android:layout_margin="20dp"
android:layout_width="110dp"
android:layout_height="wrap_content"
android:padding="5dp"
android:contentDescription="@string/app_name"
android:text="@string/treatment"
android:textStyle="bold"
android:textColor="@color/black"
android:background="@drawable/custom_button"
android:drawableTop="@drawable/treatment" />
</LinearLayout>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<Button
android:id="@+id/ibSpecialists"
android:layout_width="110dp"
android:layout_height="wrap_content"
android:padding="5dp"
android:contentDescription="@string/app_name"
android:text="@string/specialists"
android:textStyle="bold"
android:layout_margin="20dp"
android:textColor="@color/black"
android:background="@drawable/custom_button"
android:drawableTop="@drawable/specialists" />
<Button
android:id="@+id/ibDisclaimer"
android:layout_margin="20dp"
android:layout_width="110dp"
android:layout_height="wrap_content"
android:padding="5dp"
android:contentDescription="@string/app_name"
android:text="@string/about"
android:textStyle="bold"
android:textColor="@color/black"
android:background="@drawable/custom_button"
android:drawableTop="@drawable/disclaimer" />
</LinearLayout>
</LinearLayout>
</ViewFlipper>
</LinearLayout>
では、どうすれば大画面でそれを行うことができますか?
ありがとうございます。