时隔两年再次拾起android的应用开发,发现不知从何手了。所以计划做一个记账应用从头拾起来。
在编辑布局文件xml时,加入了Edit Text元件,在给其hint赋予string值时,发生错误:
error: Error: No resource found that matches the given name (at 'hint' with value '@string/about').activity_main.xml/MyFirsyProject/res/layoutline 11Android AAPT Problem
<EditText android:id="@+id/edit_message"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:hint="@string/about" />
发现这是因为在res/values/strings.xml文件中并没有声明此字符串
加入
<string name="about">about</string>
即可。