0

我的第一个 Android 应用程序是根据“构建简单的用户界面”。但是当我在我的设备上运行它时,它给了我错误:

E/AndroidRuntime(30660): FATAL EXCEPTION: main
E/AndroidRuntime(30660): java.lang.RuntimeException: Unable to start activity ComponentInfo{com.example.myfirstapp/com.example.myfirstapp.MainActivity}: android.view.InflateException: Binary XML file line #7: Error inflating class ViewText

E/AndroidRuntime(30660):    at dalvik.system.NativeStart.main(Native Method)
E/AndroidRuntime(30660): Caused by: android.view.InflateException: Binary XML file line #7: Error inflating class ViewText

但是,当我查看加载的 xml 时,我的布局文件中没有任何 TextView 元素。我的布局文件如下,

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
              android:orientation="horizontal"
              android:layout_width="fill_parent"
              android:layout_height="fill_parent"
              >
  <EditText android:id="@+id/edit_message"
            android:layout_weight="1"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:text="@string/edit_message"
            />
  <Button android:id="@+id/send_button"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content" 
          android:text="@string/button_send"
          android:onClick="sendMessage" />
</LinearLayout>

我很困惑,有什么问题?谢谢你的帮助。

4

1 回答 1

1

首先将提示添加到您的 XML 和字符串中...如果您按照教程进行操作

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 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:orientation="horizontal">
    <EditText android:id="@+id/edit_message"
        android:layout_weight="1"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:hint="@string/edit_message" />
    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/button_send" />
</LinearLayout>

其次,确保那些 @string/... 存在于您的 res/values/strings 中,如果不存在则添加它们

 <string name="edit_message"></string>

试试这个,如果它不起作用,我们会看到有什么问题。

于 2013-09-29T10:22:13.047 回答