私はこの奇妙な問題に直面しました。
私のレイアウト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>