我正在开发一个小型应用程序。但是我在我的 XML 代码中遇到了以下错误(2):我是这个领域的新手。而且我无法运行该应用程序。我需要一点帮助。
<RelativeLayout 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:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".MainActivity">
<EditText
android:id="@+id/etTelefonePessoa"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/tvTelefone"
android:layout_below="@+id/tvTelefone"
android:ems="10"
android:inputType="phone" //error: Error parsing XML: mismatched tag
/>
<EditText
android:id="@+id/etNomePessoa"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/tvNome"
android:layout_below="@+id/tvNome"
android:ems="10"
android:inputType="textPersonName"
/>
<ListView
android:id="@+id/lvMostraDados"
android:layout_width="fill_parent"
android:layout_height="20dp"
/>
</RelativeLayout> // error: The element tag "textview" must be terminated by the matching end-tag "</textview>"
有什么问题?