我在构建 android 项目时遇到问题。
我构建了android项目,但出现错误。错误是:“XML 文件中的错误:正在中止构建。”我尝试了所有解决方案。
- 我删除了 main.out.xml。之后,我清理了项目。但它没有用
- xml文件没有错误
- 我删除了 bin 文件夹。起初它起作用了。但是当我更改 xml 文件中的任何内容时,我得到同样的错误
我的 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"
android:background="@drawable/background">
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Telefon numarası :"
/>
<EditText
android:id="@+id/txtPhoneNo"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
/>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Mesaj :"
/>
<EditText
android:id="@+id/txtMessage"
android:layout_width="fill_parent"
android:layout_height="150dp"
android:gravity="top"
android:text="@string/txtMessage" />
<Button
android:id="@+id/btnSendSMS"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/btnSendSMS" />
</LinearLayout>