0

現在、音楽アプリケーション用のタブレットレイアウトを設計しています。

受話器バージョンには、音楽プレーヤーフラグメント用に2つの異なるレイアウトがあります。1つは縦向き用、もう1つは横向き用です。現在のプレイリストの曲を表示する別のフラグメントがあります。

タブレットの横向きのレイアウトでは、縦向きのプレーヤーのレイアウトとプレイリストを表示したいと思います。

これは、タブレットレイアウトのリソースです。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:background="@drawable/background"
  android:orientation="horizontal" >

<fragment android:name="de.qspool.clementineremote.ui.fragments.PlayerFragment"
          android:id="@+id/playerFragment"
          android:layout_weight="1"
          android:layout_width="match_parent"
          android:layout_height="match_parent" />

<LinearLayout android:id="@+id/playlistSongsFragment"
        android:layout_weight="1"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />

</LinearLayout>

私の問題は、Androidがフラグメント「playerFragment」の横向きのレイアウトを表示することです。どうすれば彼にポートレートバージョンを表示させることができますか?

前もって感謝します。

ご挨拶、アスファロス

4

1 に答える 1

0

AndroidManifest.xml から、任意のアクティビティを強制的に横向きまたは縦向きに表示することができます

 <activity android:name="youractivity" android:screenOrientation="portrait" ></activity>
于 2013-03-23T18:08:53.550 に答える