每个文本字段都期望某种类型的文本输入,例如电子邮件地址、电话号码或纯文本。您必须为应用中的每个文本字段指定输入类型,以便系统显示合适的软输入法,例如屏幕键盘。
除了输入法提供的按钮类型之外,您还可以指定诸如输入法是否提供拼写建议、是否将新句子首字母大写以及是否用操作按钮(如“完成”或“下一步”)替换回车按钮等行为。此页面介绍如何指定这些特性。
指定键盘类型
始终通过将android:inputType
属性添加到<EditText>
元素中来声明文本字段的输入法。
例如,如果您想要一个用于输入电话号码的输入法,请使用"phone"
值
<EditText android:id="@+id/phone" android:layout_width="fill_parent" android:layout_height="wrap_content" android:hint="@string/phone_hint" android:inputType="phone" />
如果文本字段用于密码,请使用"textPassword"
值,以便文本字段隐藏用户的输入
<EditText android:id="@+id/password" android:hint="@string/password_hint" android:inputType="textPassword" ... />
使用android:inputType
属性记录了几个可能的值,并且可以组合其中一些值以指定输入法外观和其他行为。
启用拼写建议和其他行为
使用android:inputType
属性,您可以为输入法指定各种行为。最重要的是,如果您的文本字段用于基本文本输入(例如短信),请使用"textAutoCorrect"
值启用自动拼写更正。
您可以使用android:inputType
属性组合不同的行为和输入法样式。例如,以下是如何创建一个文本字段,该字段将句子的第一个单词首字母大写并自动更正拼写错误
<EditText android:id="@+id/message" android:layout_width="wrap_content" android:layout_height="wrap_content" android:inputType= "textCapSentences|textAutoCorrect" ... />
指定输入法操作
大多数软输入法在左下角提供一个适合当前文本字段的用户操作按钮。默认情况下,系统将此按钮用于“下一步”或“完成”操作,除非您的文本字段支持多行文本(例如使用android:inputType="textMultiLine"
),在这种情况下,操作按钮为回车键。但是,您可以指定其他可能更适合您的文本字段的操作,例如“发送”或“转到”。
要指定键盘操作按钮,请使用android:imeOptions
属性以及操作值,例如"actionSend"
或"actionSearch"
。例如
<EditText android:id="@+id/search" android:layout_width="fill_parent" android:layout_height="wrap_content" android:hint="@string/search_hint" android:inputType="text" android:imeOptions="actionSend" />
然后,您可以通过为EditText
元素定义一个TextView.OnEditorActionListener
来侦听操作按钮的按下事件。在您的侦听器中,响应EditorInfo
类中定义的相应 IME 操作 ID,例如IME_ACTION_SEND
,如下例所示
Kotlin
findViewById<EditText>(R.id.search).setOnEditorActionListener { v, actionId, event -> return@setOnEditorActionListener when (actionId) { EditorInfo.IME_ACTION_SEND -> { sendMessage() true } else -> false } }
Java
EditText editText = (EditText) findViewById(R.id.search); editText.setOnEditorActionListener(new OnEditorActionListener() { @Override public boolean onEditorAction(TextView v, int actionId, KeyEvent event) { boolean handled = false; if (actionId == EditorInfo.IME_ACTION_SEND) { sendMessage(); handled = true; } return handled; } });
提供自动完成建议
如果您希望在用户键入时提供建议,可以使用EditText
的子类,称为AutoCompleteTextView
。要实现自动完成,您必须指定一个Adapter
来提供文本建议。有多个适配器可用,具体取决于数据来自何处,例如来自数据库或数组。
以下过程描述了如何设置一个AutoCompleteTextView
,该控件使用ArrayAdapter
从数组提供建议
- 将
AutoCompleteTextView
添加到您的布局中。这是一个仅包含文本字段的布局<?xml version="1.0" encoding="utf-8"?> <AutoCompleteTextView xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/autocomplete_country" android:layout_width="fill_parent" android:layout_height="wrap_content" />
- 定义包含所有文本建议的数组。例如,这是一个国家名称数组
<?xml version="1.0" encoding="utf-8"?> <resources> <string-array name="countries_array"> <item>Afghanistan</item> <item>Albania</item> <item>Algeria</item> <item>American Samoa</item> <item>Andorra</item> <item>Angola</item> <item>Anguilla</item> <item>Antarctica</item> ... </string-array> </resources>
- 在您的
Activity
或Fragment
中,使用以下代码指定提供建议的适配器Kotlin
// Get a reference to the AutoCompleteTextView in the layout. val textView = findViewById(R.id.autocomplete_country) as AutoCompleteTextView // Get the string array. val countries: Array<out String> = resources.getStringArray(R.array.countries_array) // Create the adapter and set it to the AutoCompleteTextView. ArrayAdapter<String>(this, android.R.layout.simple_list_item_1, countries).also { adapter -> textView.setAdapter(adapter) }
Java
// Get a reference to the AutoCompleteTextView in the layout. AutoCompleteTextView textView = (AutoCompleteTextView) findViewById(R.id.autocomplete_country); // Get the string array. String[] countries = getResources().getStringArray(R.array.countries_array); // Create the adapter and set it to the AutoCompleteTextView. ArrayAdapter<String> adapter = new ArrayAdapter<String>(this, android.R.layout.simple_list_item_1, countries); textView.setAdapter(adapter);
在前面的示例中,初始化了一个新的
ArrayAdapter
,以将countries_array
字符串数组中的每个项目绑定到simple_list_item_1
布局中存在的TextView
。这是 Android 提供的一个布局,它为列表中的文本提供标准外观。 - 通过调用
setAdapter()
将适配器分配给AutoCompleteTextView
。