4

Android デバイス用のアプリをコーディングしていますが、nexus 4 電話で実行すると問題が発生します。Galaxy S3/Note 2 およびその他のデバイスで問題なく動作します。

nexus 4 パラメータを使用して AVD を作成しましたが、それで動作します。

問題は、私のメイン アクティビティの表示に関するものです。モザイク画のようです。

logcat には何もありません。修正方法がわかりません。

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
tools:context=".MainActivity" >

<LinearLayout
    android:layout_width="fill_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >


    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content" >

        <TextView
            android:id="@+id/textView1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/Titre_fav"
            android:textAppearance="?android:attr/textAppearanceLarge" />

        <ImageView
            android:id="@+id/imageView1"
            android:contentDescription="@string/image_desc_star_logo"
            android:layout_width="25dp"
            android:layout_height="25dp"
            android:src="@drawable/ic_fav" />

    </LinearLayout>
    <ScrollView
    android:layout_width="fill_parent"
    android:layout_height="wrap_content">
      <LinearLayout
          android:layout_width="fill_parent"
          android:layout_height="wrap_content"
          android:id="@+id/fav_scroll">
      </LinearLayout>
    </ScrollView>

</LinearLayout>
<RelativeLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true" 
        android:layout_marginBottom="50dp" >
        <TextView
            android:id="@+id/console"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="" />
</RelativeLayout>
<RelativeLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"  >
        <Button
            android:id="@+id/nav_to_foud"
            style="?android:attr/buttonStyleSmall"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentRight="true"
            android:text="@string/nav_to_found_text" />

        <Button
            android:id="@+id/nav_to_settings"
            style="?android:attr/buttonStyleSmall"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/nav_to_settings_text" />
    </RelativeLayout>
</RelativeLayout>

どうすれば修正できますか?

評判が10に達していないため、スクリーンショットを投稿できません。


編集:投稿のスクリーンショットを知ることができます、ありがとう:)

それはどのように見えるか: 正しい画面

外観: ここに画像の説明を入力

4

1 に答える 1

0

問題の解決策を見つけましたが、それがうまくいくかどうかはわかりません。ただし、xml ファイルに背景を追加してみてください。同様に:android:background="#000000"最上位のレイアウトで。

于 2014-03-24T06:59:42.223 に答える