我正在学习 Android,我有一个我认为很奇怪的问题。
在 /res/values/strings.xml 我有:
<string name="titleStatus">Status Update</string>
在 /res/layout/activity_status.xml 我有:
<!-- Title TextView-->
<TextView android:layout_width="match_parent"
android:layout_height="wrap_content" android:gravity="center"
android:textSize="30sp"
android:layout_margin="10dp" android:text="@string/titleStatus"/>
但是,查看 activity_status.xml 时出现错误:
错误:找不到与给定名称匹配的资源(在“文本”处,值为“@string/titleStatus”)。活动状态.xml
然后我认为它可能有助于使用“Project | Clean”,但我遇到了同样的问题(现在没有自动生成的 R.java 类)
我正在关注本教程/书: http: //ofps.oreilly.com/titles/9781449390501/Android_User_Interface.html