0
 <?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >

<EditText
    android:id="@+id/etNum"
    android:layout_width="wrap_content"
    android:layout_height="102dp"
    android:hint="@string/Please enter a department number." 
    android:inputType="number"
    />

    <EditText
    android:id="@+id/etName"
    android:layout_width="wrap_content"
    android:layout_height="102dp"
    android:hint="@string/Or enter a department name." 
    android:inputType="string"
    />


<Button
    android:id="@+id/btnSearch"
    android:layout_width="fill_parent"
    android:layout_height="70dp"
    android:text="@string/Search" />


<TextView
    android:id="@+id/tvDisplay"
    android:layout_width="match_parent"
    android:layout_height="0dip"
    android:layout_weight="0.19" />


</LinearLayout>

在第二个 EditText 的最后,我收到一个错误:解析 XML 时出错:格式不正确(无效令牌)。我不确定是什么原因造成的。

4

2 回答 2

1

基本上,EditText inputtype 用于设置 EditText 中的输入类型。

android:inputtype 的可能值为:

text
textCapCharacters
textCapWords
textCapSentences
textAutoCorrect
textAutoComplete
textMultiLine
textImeMultiLine
textNoSuggestions
textUri
textEmailAddress
textEmailSubject
textShortMessage
textLongMessage
textPersonName
textPostalAddress
textPassword
textVisiblePassword
textWebEditText
textFilter
textPhonetic
number
numberSigned
numberDecimal
phone
datetime
date
time
于 2012-04-19T18:55:44.473 回答
1

此行给出错误:android:inputType="string"

将输入类型从字符串更改为文本。错误:不允许使用字符串类型(在“inputType”处,值为“string”)。

于 2012-04-19T18:35:54.577 回答