我在Android的教程应用程序的XML中有这段代码:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<EditText
android:layout_width="fill_parent" android:layout_height="wrap_content"
android:id="@+id/etCommands"
android:hint="@string/command"
android:inputType="textPassword|number"
</EditText>
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/button" </Button>
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/textview"
</TextView>
我在&#34;的行上收到错误。显然,根据Eclipse,这不是关闭此部分的正确方法,但正确的方法是什么? &#34; /&GT;&#34; &#34;&gt;&#34;也显示错误。
我该如何解决这个问题?
答案 0 :(得分:1)
<EditText
android:layout_width="fill_parent" android:layout_height="wrap_content"
android:id="@+id/etCommands"
android:hint="@string/command"
android:inputType="textPassword|number"> <!--you forgot add closing bracket here-->
</EditText>
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/button" > <!--you forgot add closing bracket here-->
</Button>
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/textview" > <!--you forgot add closing bracket here-->
</TextView>
按如下方式编写布局......
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<EditText
android:layout_width="fill_parent" android:layout_height="wrap_content"
android:id="@+id/etCommands"
android:hint="@string/command"
android:inputType="textPassword|number" />
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/button" />
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/textview" />
</LinearLayout>
答案 1 :(得分:0)
你在哪里没有关闭hte xml标签...... 这就是为什么你得到错误....
<EditText
android:layout_width="fill_parent" android:layout_height="wrap_content"
android:id="@+id/etCommands"
android:hint="@string/command"
android:inputType="textPassword|number" >
</EditText>
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/button" ></Button>
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/textview" >
</TextView>