Android代码抛出错误

时间:2015-08-24 12:23:50

标签: android compiler-errors

这是一个只为我的手机打印hello world的应用程序的代码。但是,当我尝试在Android工作室中将文本从“@ string / hello_world”更改为其他内容(例如“@ string / hello”)时会抛出错误。有人可以帮忙吗?

<RelativeLayout 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:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:paddingBottom="@dimen/activity_vertical_margin" tools:context=".MainActivity">

<TextView android:text="@string/hello_world" android:layout_width="wrap_content"
    android:layout_height="wrap_content" />

1 个答案:

答案 0 :(得分:0)

转到您的res文件夹 - &gt;值 - &gt; strings.xml中。

在该文件中,您可以找到字符串名称和值。

只需更改您想要的名称和值,并在布局中提供该名称。

<string name="Hello_world">Hello World</string>

<string name="Hello">My First Application</string>