android方向不起作用

时间:2014-01-30 22:40:28

标签: android orientation

我正在制作一个Android应用程序。我的屏幕没有改变活动的方向。三星口袋里的android版本是2.3.6。

按照布局屏幕。

编辑:对不起,下面这个标记头丢失了,因为它位于右下方,你怎么能看到缺少xml的部分。

<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:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context=".MainActivity" >

    <EditText android:id="@+id/edit_message"
        android:layout_weight="1"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:hint="@string/edit_message" />

    <Button android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/button_send"
        android:onClick="sendMessage" />

</LinearLayout>

AndroidManifest:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.myfirstapp"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk
        android:minSdkVersion="8"
        android:targetSdkVersion="18" />

    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/CustomActionBarTheme">
        <activity
            android:name="com.example.myfirstapp.MainActivity"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <activity
            android:theme="@style/Custom2ActionBarTheme"
            android:name="com.example.myfirstapp.DisplayMessageActivity"
            android:label="@string/title_activity_display_message"
            android:parentActivityName="com.example.myfirstapp.MainActivity" >
            <meta-data
                android:name="android.support.PARENT_ACTIVITY"
                android:value="com.example.myfirstapp.MainActivity" />
        </activity>
    </application>

</manifest>

我不知道还能做什么,我通过谷歌寻找解决方案,但我找不到答案。

帮助

2 个答案:

答案 0 :(得分:2)

这部电话:http://www.samsung.com/hk_en/consumer/mobile/mobile-phones/smartphone/GT-S5300ZKATGY-features

它是否肯定有一个传感器知道它的方向发生了变化?在您的设置中是自动旋转关闭?

我发布的内容中没有任何问题,我知道会阻止定位更改工作。

答案 1 :(得分:1)

正如其他答案所提到的 - 首先你需要检查手机是否有能力,然后检查你是否在Android中没有禁用该设置。

在你的应用程序中,“red”下的“layout”文件夹 - 你有一个“layout-land”文件夹,你在其中定义一个指定横向布局的布局文件。

创建一个layout-land目录(在“res”文件夹下),并将布局XML文件的横向版本放在该目录中。