当前位置:首页 > Android

EditText imeOptions属性

jsc10年前 (2016-04-14)Android4981

默认情况下软键盘右下角的按钮为“下一个”,点击会到下一个输入框,保持软键盘

1.png

设置 android:imeOptions="actionDone" ,软键盘下方变成“完成”,点击后光标保持在原来的输入框上,并且软键盘关闭

2.png

android:imeOptions="actionSend" 软键盘下方变成“发送”,点击后光标移动下一个

3.png

在 这里设置的imeOptions如何使用呢?如下面的代码,让EditText实现setOnEditorActionListener,在 onEditAction方法中actionId就对应我们设置的imeOptions。系统默认的actionId 有:EditorInfo.IME_NULL、EditorInfo.IME_ACTION_SEND、 EditorInfo.IME_ACTION_DONE等。这样我们就可以根据不同的EditText来实现不同的软键盘右下角功能键。

package com.test;

import com.test.main.TestAsyn;

import android.app.Activity;
import android.os.Bundle;
import android.view.KeyEvent;
import android.view.inputmethod.EditorInfo;
import android.widget.EditText;
import android.widget.TextView;
import android.widget.TextView.OnEditorActionListener;
import android.widget.Toast;

public class IMFActivity extends Activity implements OnEditorActionListener {
    
    EditText etDefault;
    EditText etEmail;
    EditText etNumber;
    
     /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.imf_layout);
        
        etDefault = (EditText)findViewById(R.id.default_content);
        etEmail = (EditText)findViewById(R.id.email_content);
        etNumber = (EditText)findViewById(R.id.number_content);
        etDefault.setOnEditorActionListener(this);
        etEmail.setOnEditorActionListener(this);
        etNumber.setOnEditorActionListener(this);
        
    }

    @Override
    public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
        switch(actionId){
        case EditorInfo.IME_NULL:
            System.out.println("null for default_content: " + v.getText() );
            break;
        case EditorInfo.IME_ACTION_SEND:
            System.out.println("action send for email_content: "  + v.getText());
            break;
        case EditorInfo.IME_ACTION_DONE:
            System.out.println("action done for number_content: "  + v.getText());
            break;
        }
        //Toast.makeText(this, v.getText()+"--" + actionId, Toast.LENGTH_LONG).show();
        return true;
    }
}

xml文件:

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

    <TableLayout android:layout_width="fill_parent"
        android:layout_height="fill_parent">
        <TableRow>
            <TextView android:text="No special rules" android:id="@+id/TextView01"
                android:layout_width="wrap_content" android:layout_height="wrap_content"></TextView>
            <EditText android:text="1111111111111" android:id="@+id/default_content"
                android:layout_width="fill_parent" android:layout_height="wrap_content"></EditText>
        </TableRow>
        <TableRow>
            <TextView android:text="Email address:" android:id="@+id/TextView01"
                android:layout_width="wrap_content" android:layout_height="wrap_content"></TextView>
            <EditText android:text="" android:id="@+id/email_content"
                android:layout_width="fill_parent" android:layout_height="wrap_content"
                android:inputType="text|textEmailAddress"
                android:imeOptions="actionSend"></EditText>
        </TableRow>
        <TableRow>
            <TextView android:text="Signed decimal number:" android:id="@+id/TextView01"
                android:layout_width="wrap_content" android:layout_height="wrap_content"></TextView>
            <EditText android:text="" android:id="@+id/number_content"
                android:layout_width="fill_parent" android:layout_height="wrap_content"
                android:inputType="number|numberSigned|numberDecimal"
                android:imeOptions="actionDone"></EditText>
        </TableRow>
    </TableLayout>
</ScrollView>


扫描二维码推送至手机访问。

版权声明:本文由微小站发布,如需转载请注明出处。

本文链接:https://jsc0.com/post/109.html

分享给朋友:

“EditText imeOptions属性” 的相关文章

Android权限问题整理

Android权限系统非常庞大,我们在Android系统中做任何操作都需要首先获取Android系统权限,本文记录了所有的Android权限问题,整理一下分享给大家。访问登记属性 android.permission.ACCESS_CHECKIN_PROPERTIES读取或写入登记check-in数…

android上传图片至服务器

本实例实现了android上传手机图片至服务器,服务器进行保存服务器servlet代码publicvoid doPost(HttpServletRequest request, HttpServletResponse response)&…

修改keystore密码别名等

修改keystore密码别名等

之前在测试Eclipse ADT的Custom debug ˂a target="_blank" title="View all posts in keystore" hr…

Android 学习之 开源项目PullToRefresh的使用

Android 学习之 开源项目PullToRefresh的使用

首先 下载 Android-PullToRefresh-master ˂img src="http://photo.jsc…

GridView中item高度自适应

item高度自适应public class MyAdapter extends BaseAdapter {         GridView mGv;&n…

采用SharedPreferences保存用户偏好设置参数

采用SharedPreferences保存用户偏好设置参数-------------------------------------------------1.eclipse就是通过xml来保存用户的偏好设置-->window-->perfences-------------------…