平板电脑布局,使用肖像片段而不是景观布局

时间:2013-03-23 15:05:50

标签: java android layout fragment

我目前正在为我的音乐应用程序设计平板电脑布局。

手机版本有两种不同的音乐播放器片段布局,一种用于纵向,一种用于横向。 我有另一个片段,显示当前播放列表中的歌曲。

对于平板电脑横向布局,我想显示纵向播放器布局和播放列表。

这是平板电脑布局的资源:

<?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”的横向布局。我怎么能强迫他展示肖像版?

提前致谢。

问候, Asfaloth

1 个答案:

答案 0 :(得分:0)

您可以强制从AndroidManifest.xml

以横向或纵向显示任何活动
 <activity android:name="youractivity" android:screenOrientation="portrait" ></activity>