0

私はこの奇妙な問題に直面しました。

私のレイアウトxmlには、単一TextViewのがあり、その中に次のテキストがあります。

Appへようこそ。\nなど」、で定義されていstrings.xmlます。

4.0を実行しているタブレットでは、完全な文字列が表示されます。

2.3.7を実行しているスマートフォンでは、の直前に表示されます\n

私が作成した以前のアプリでは、問題なく動作しまし\nた。

誰かが似たようなことに直面しましたか?

XMLコード:

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

    <TextView
        android:id="@+id/textViewWelcomeNotes"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentTop="false"
        android:layout_centerHorizontal="true"
        android:layout_centerVertical="false"
        android:layout_margin="15dp"
        android:layout_marginTop="20dp"
        android:fitsSystemWindows="false"
        android:focusableInTouchMode="true"
        android:gravity="center_vertical|center_horizontal"
        android:hint="@string/msgWelcomeNotesHint"
        android:paddingTop="10dp"
        android:text="@string/msgWelcomeNotes"
        android:textSize="14dp" />

</RelativeLayout>
4

1 に答える 1

0

の最新の奇妙なバグでしADT 20.0Eclipse Juno

Eclipse Junoを新規インストールしました。これは、プラグインを大量にロードしたため、\n2.3および4.0以降のAndroidバージョンで同じapkで問題なく表示されるようになったためです。

また、新しいアクティビティ(New->Other->Android Activity)を作成する場合など、他のいくつかのバグがこのADTに存在します。

于 2012-07-13T20:15:40.270 に答える