我将我的应用程序置于横向模式manifest
:
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:screenOrientation="landscape"
android:theme="@android:style/Theme.NoTitleBar.Fullscreen" >
<activity
android:name=".VerticalSlideshow"
android:label="@string/title_activity_prime" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
我在背景中有FrameLayout
一个垂直ScrollView
的,它正在嗡嗡作响,在前景中LinearLayout
有一个按钮。ImageView
一切正常,除了前景图像/按钮不会使用模拟器进入横向模式。这是我的代码:
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#ddffff" >
<ScrollView
android:id="@+id/horizontal_scrollview_id"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:fadingEdge="none" >
<LinearLayout
android:id="@+id/horiztonal_outer_layout_id"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center_vertical"
android:orientation="vertical"
android:paddingBottom="0dp"
android:paddingTop="0dp" >
</LinearLayout>
</ScrollView>
<LinearLayout
android:id="@+id/moving"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="center_horizontal"
android:background="@drawable/clear"
android:gravity="center_horizontal"
android:orientation="horizontal" >
<ImageView
android:id="@+id/imageView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/truck1" />
<LinearLayout
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_gravity="right"
android:layout_weight="0.12"
android:gravity="right"
android:orientation="vertical" >
<ImageButton
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="0.25"
android:background="@drawable/carfs"
android:src="@drawable/clear" />
<ImageButton
android:id="@+id/button2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="0.25"
android:background="@drawable/policef"
android:src="@drawable/clear" />
<ImageButton
android:id="@+id/button3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="0.25"
android:background="@drawable/taxif"
android:src="@drawable/clear" />
<ImageButton
android:id="@+id/button4"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="0.25"
android:background="@drawable/amulancef"
android:src="@drawable/clear" />
</LinearLayout>
</LinearLayout>
</FrameLayout>
Eclipse 中的 XML 预览看起来不错。我应该在真手机上测试吗?最终,我怎样才能将这个线性视图强制变为横向?