所以我在我的strings.xml文件中的字符串中聲明,如下所示:Android的元素ID命名
<string name="welcome">Please hit the menu to begin</string>
而且我在main.xml中一個TextView使用它像這樣:
<TextView
android:id="@string/welcome"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/welcome"
/>
現在,是給TextView一個ID的正確方法?使用字符串資源作爲這樣的ID似乎很奇怪。