1

こんにちは、以前にこの質問をしましたが、解決策がありませんでした。

Android 4.2を実行しているGalaxy nexusに次の問題があります。

カメラインテントを使用して写真を撮っています。横向きモードで写真をキャプチャしてアクティビティに戻ると (アクティビティはandroid:screenOrientation="portrait"マニフェストで縦向きモードになっています)、ステータス バーはビューを非表示にします。ポートレートモードで写真を撮るとうまくいきます。

Galaxy Nexus これは、 や などの特定のデバイスでのみ発生します Sony Xperia Neo 。私はそれをテストしましたがhtc Desire Samsung Aceデバイスはうまく機能します。

助けてください。

ステータスバーの後ろを見るステータスバーの後ろに表示

必要なのに対しステータスバーの下に表示

編集: レイアウト xml:

<?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="@color/signup_bg"
android:orientation="vertical" >
<include
    android:layout_width="match_parent"
    android:layout_height="@dimen/abs__action_bar_default_height"
    layout="@layout/titlebar_account" />
<ScrollView
    android:id="@+id/editAccountScrollView"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content" >
    <LinearLayout
        android:id="@+id/editAccountLinearLayout"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:orientation="vertical" >
        <include
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginBottom="16dp"
            android:layout_marginLeft="16dp"
            android:layout_marginRight="16dp"
            android:layout_marginTop="16dp"
            layout="@layout/signup_basic" />
        <include
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            layout="@layout/signup_home_base" />
        <TextView
            android:id="@+id/textView1"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginTop="16dp"
            android:paddingBottom="12dp"
            android:paddingLeft="16dp"
            android:paddingRight="16dp"
            android:paddingTop="10dp"
            android:text="@string/account_about_me"
            android:textColor="@color/account_headings" />
        <include
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginLeft="16dp"
            android:layout_marginRight="16dp"
            layout="@layout/edit_account_email_about_me" />
        <include
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            layout="@layout/edit_account_social" />
    </LinearLayout>
</ScrollView>

4

2 に答える 2

0

あなただけでそれを行うことができます

 setTitle(""); leaves the title blank. 

setDisplayShowTitleEnabled(false); also just leaves the title blank. 
于 2012-12-03T18:20:04.807 に答える