android 创建helloworld 出现如下状况
<?xmlversion="1.0"encoding="utf-8"?><LinearLayoutxmlns:android="http://schemas.androi...
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/hello_world" />
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/This id my first Android Application" />
<Button
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/And this is a clickable button!" />
TextView 和 Button的最后一句老出现error:Error :no resource found the that given name(at"text" with value "@string/this is my first Android Appliction" 展开
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/hello_world" />
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/This id my first Android Application" />
<Button
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/And this is a clickable button!" />
TextView 和 Button的最后一句老出现error:Error :no resource found the that given name(at"text" with value "@string/this is my first Android Appliction" 展开
1个回答
展开全部
改为如下
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="This id my first Android Application" />
<Button
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="And this is a clickable button!" />
使用常量字符串,不需要使用@string
,只有使用定义在string.xml中的字符串时才需要使用@string/
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="This id my first Android Application" />
<Button
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="And this is a clickable button!" />
使用常量字符串,不需要使用@string
,只有使用定义在string.xml中的字符串时才需要使用@string/
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询