构建android项目时遇到问题。
我构建android项目,我收到一个错误。错误是:“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>
答案 0 :(得分:5)
确保您的xml文件名为小写字母,不要使用数字。仅使用dot例如main.xml。 创建xml后,右键单击&gt; Source&gt; Format。运行你的应用程序好运。