回報我通過啓動相機:Startactivity的結果,在橫向模式下
Intent camera = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
startActivityForResult(camera, PICTURE_RESULT);
它的工作沒有任何錯誤。唯一的問題是,當我回來時,佈局是在風景模式eventhough im肖像舉行。我能夠在這裏獲取圖像數據。
屏幕短時間後自動返回肖像模式,但數據丟失。
在清單中設置方向不起作用。
清單:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.camera"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="16" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="com.example.camera.MainActivity"
android:configChanges="orientation"
android:label="@string/app_name"
android:screenOrientation="portrait" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
你有關於如何從相機在人像返回mainactivity任何提示?
您的活動試過嗎? android:screenOrientation =「portrait」 – R9J
是的,我有!仍然返回風景,並在旋轉回肖像之後不久返回 – Sebastian