以下のxmlコードで、Eclipseが警告「[I18N] Hardcoded string "TextView", should use @string resource"」を表示している理由を知りたい.実際には、編集テキストでユーザーが書いたテキストを取得しようとしていますこの現在の活動に。
<?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:orientation="vertical" >
<TextView
android:id="@+id/textView1"
android:layout_width="match_parent"
android:layout_height="0dip"
android:layout_weight="0.01"
android:text="TextView" />
</LinearLayout>