これは初めてのアンドロイドプログラムです。私はアンドロイドデベロッパートレーニングウェブサイトに従っています。私activity_main.xml
は、次のようになります。layout_hintで指定された名前と一致するリソースが見つかりません
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".MainActivity" >
<EditText android:id="@+id/edit_message"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_hint="@string/edit_message"/>
今ではエラーを表示し、同じよう警告:
警告 - This text field does not specify an inputType or a hint
エラー - あなたはres/values/strings.xml
にedit_message
の値を定義する必要がerror:Error:No resource found that matches the given name(at 'layout_hint' with the value '@string/edit_message')
ありがとうございました。エラーは今すぐ消えました。しかし、私はまだ警告メッセージを受けています。 – Nitish
私は私の答えを編集しました。 – Neoh
Thnks。どちらも今行った – Nitish