0

这是与我遇到的错误有关的屏幕截图

我怎样才能解决这个问题 ?

错误

我真的很感激一些帮助

这是 XML 代码:

 <?xml​version="1.0" ​encoding="utf-8"?>
    <LinearLayout​xmlns:android="http://schemas.android.com/apk/res/android"
​​​    android:orientation="vertical"
​​​​    android:layout_width="fill_parent"
​​​    ​android:layout_height="fill_parent"​&gt;
    <TextView​​
​​​​    android:layout_width="fill_parent"​
​​​​    android:layout_height="wrap_content"​
​​​​    android:text="@string/hello"​/>
​​​​
    <TextView
​​​​    android:layout_width="fill_parent"
​​​​    android:layout_height="wrap_content"
​​​​    android:text="This is my first Android Application!" />
    <Button
​​​​    android:layout_width="fill_parent"
​​​​    android:layout_height="wrap_content"
​​​​    android:text="And this is a clickable button!" />
​​​​
    </LinearLayout>
4

2 回答 2

3

Strings.xml我相信(在 res->values 中)没有名为“hello”的字符串。

请检查,可能这应该可以解决您的问题。

于 2012-09-19T05:36:02.617 回答
3
LinearLayout​xmlns:android="http://schemas.android.com/apk/res/android"

需要是

LinearLayout ​xmlns:android="http://schemas.android.com/apk/res/android"

没有那个空格,第一个 XML 标记是无效的。

完整的 XML 将是:

<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="fill_parent"
        android:layout_height="wrap_content"
        android:text="@string/hello" />

    <TextView android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="This is my first Android Application!" />

    <Button android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="And this is a clickable button!" />

</LinearLayout>
于 2012-09-18T19:48:29.780 回答