设置显示内容与隐藏内容

                if (isChecked){
editPassword.setTransformationMethod(HideReturnsTransformationMethod.getInstance());//设置密码明文显示
editPassword.setSelection(editPassword.getText().length());
}else {
editPassword.setTransformationMethod(PasswordTransformationMethod.getInstance());//设置密码隐藏显示
editPassword.setSelection(editPassword.getText().length());
}

自动选中焦点,并且弹出输入框

EditText.setFocusable(true);//设置焦点打开
EditText.setFocusableInTouchMode(true);//设置为输入焦点mode
EditText.requestFocus();//申请焦点
InputMethodManager inputManager = (InputMethodManager)commentEditText.getContext().getSystemService(Context.INPUT_METHOD_SERVICE);
inputManager.showSoftInput(EditText, )

释放焦点,并且隐藏输入框

private void clearFocus(){
//设置其他View可以自动获取焦,注意如果不设置会有一个问题,在你的布局里只有一个EditText的情况下,可能清除焦点后又会自动将焦点定位回去
mBack.setFocusableInTouchMode(true);
mAddReplyEdit.clearFocus(); //清除焦点
InputMethodManager imm = (InputMethodManager) getActivity().getSystemService(Context.INPUT_METHOD_SERVICE);
if (imm.isActive() && getActivity().getCurrentFocus() != null) {
imm.hideSoftInputFromWindow(getActivity().getCurrentFocus().getWindowToken(), InputMethodManager.HIDE_NOT_ALWAYS);
}
}

开启or关闭输入框是否可以点击

private void openOrClose(boolean openOrClose){
//注意,不要使用mAddReplyEdit.setFocusable(true);来开关聚焦,因为关闭后在开启会出现依然无法点击的问题
mAddReplyEdit.setFocusableInTouchMode(openOrClose);
}

不弹出输入盘

直接在xml布局里添加无法点击和无法获取焦点就可以了

android:clickable="false"
android:focusable="false"

获取光标框选文本的位置

int start = mTextView.getSelectionStart();
int end = mTextView.getSelectionEnd();

设置光标位置

editText.setSelection(editPassword.getText().length());
editText.setSelection(0, editPassword.getText().length());

输入法位置改变,改变输入框位置

android:windowSoftInputMode的值adjustPan或者adjustResize即可,像这样:

<activity
android:name=".MainActivity"
android:windowSoftInputMode="adjustPan" >
...
</activity>

这个方法在一些ListView里使用的时候,输入框依然会被遮盖.


悬浮输入框,始终悬浮在输入法的上方

首先是清单xml里添加activity的属性如下

<activity android:name=".work.HomeActivity"
android:windowSoftInputMode="adjustPan"/>

然后是在布局文件里的输入框,因为是点击按钮后显示输入框,所以下面的输入框在布局最下面为隐藏状态,

<EditText
android:id="@+id/comment_edittext"
android:layout_width="match_parent"
android:layout_height="52dp"
android:textSize="@dimen/font_size_14"
android:hint="评论"
android:textColorHint="@color/fontColorAuxiliaryLightGray"
android:singleLine="true"
android:visibility="gone"
android:focusable="true"
android:focusableInTouchMode="true"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"/>

监听输入法是否弹出

private void initGlobalLayoutListener(){
mGlobalLayoutListener = new ViewTreeObserver.OnGlobalLayoutListener() {
int mScreenHeight = 0;
int mKeyboardHeight = 0;
@Override
public void onGlobalLayout() { Rect rect = new Rect();
// 测量当前窗口的显示区域
((Activity)getContext()).getWindow().getDecorView()
.getWindowVisibleDisplayFrame(rect);
if(mScreenHeight <= 0){
mScreenHeight = ((WindowManager) getContext()
.getSystemService(Context.WINDOW_SERVICE))
.getDefaultDisplay().getHeight();
}
//计算出软键盘的高度
int keyboardHeight = mScreenHeight - rect.bottom; //如果keyboardHeight大于屏幕的五分之一,
// 此时keyboardHeight有效,反之就是软键盘已经关闭了。
if (Math.abs(keyboardHeight) > mScreenHeight / 5) {
mKeyboardHeight = keyboardHeight;
if (mEdittext.getVisibility() == View.GONE){//此处多添加一次显示,因为OnGlobalLayoutListener的连续性会导致之前未触发键盘的判断还执行,然后又隐藏了输入框
mEdittext.setVisibility(View.VISIBLE);
mEdittext.setFocusable(true);
mEdittext.setFocusableInTouchMode(true);
mEdittext.requestFocus();
mEdittext.setTag(true);
}
L.e("已经触发键盘");
}else {
                  //获取输入法是否要显示的状态,注意别以为可以使用mEdittext.getVisibility()来替代,实际上是不行的,
                  //因为OnGlobalLayoutListener的监听是连续触发并且有延迟,很容易在mEdittext显示的一瞬间就隐藏了
if ((boolean)mEdittext.getTag()){
mEdittext.setVisibility(View.GONE);
mEdittext.setTag(false); }
L.e("没有触发键盘"); }
}
};
mRootLayout.getViewTreeObserver().addOnGlobalLayoutListener(mGlobalLayoutListener);//给xml里的根布局设置监听 }

点击后显示输入框

 mBtn.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
mEdittext.setFocusable(true);
mEdittext.setFocusableInTouchMode(true);
mEdittext.requestFocus();
InputMethodManager inputManager = (InputMethodManager) mCommentEdittext.getContext().getSystemService(Context.INPUT_METHOD_SERVICE);//获取输入法管理
inputManager.showSoftInput(mEdittext, 0);//要显示输入法的view
mEdittext.setTag(true);//给输入框设一个标记,标示输入框已经显示
}
});

最后注意移除监听

@Override
public void onPause() {
super.onPause();
mRootLayout.getViewTreeObserver().removeOnGlobalLayoutListener(mGlobalLayoutListener);
}

输入状态监听

    EditText editText = (EditText)findViewById(R.id.monitor_edit_text0);
editText.addTextChangedListener(new TextWatcher() { @Override
public void onTextChanged(CharSequence text, int start, int before, int count) {
//text 输入框中改变后的字符串信息
//start 输入框中改变后的字符串的起始位置
//before 输入框中改变前的字符串的位置 默认为0
//count 输入框中改变后的一共输入字符串的数量
textView1.setText("输入后字符串 [ " + text.toString() + " ] 起始光标 [ " + start + " ] 输入数量 [ " + count+" ]"); } @Override
public void beforeTextChanged(CharSequence text, int start, int count,int after) {
//text 输入框中改变前的字符串信息
//start 输入框中改变前的字符串的起始位置
//count 输入框中改变前后的字符串改变数量一般为0
//after 输入框中改变后的字符串与起始位置的偏移量
System.out.println(text.toString());
textView0.setText("输入前字符串 [ " + text.toString() + " ]起始光标 [ " + start + " ]结束偏移量 [" + after + " ]");
} @Override
public void afterTextChanged(Editable edit) {
//edit 输入结束呈现在输入框中的信息
textView2.setText("输入结束后的内容为 [" + edit.toString()+" ] 即将显示在屏幕上");
}
});

代码上设置EditView的内容长度

/**
* 设置输入框文本长度
*
* @param length
*/
private void setEditTextMaxLength(int length) {
InputFilter[] inputFilters = {new InputFilter.LengthFilter(length)};
dialogInputEdt.setFilters(inputFilters);
}

删除EditView最后一位内容

                int index = mEditPasswordEt.getSelectionStart();
String password = mEditPasswordEt.getText().toString();
if (TextUtils.isEmpty(password)) {
return;
}
mEditPasswordEt.getText().delete(index - 1, index);

end

Android开发 EditText的开发记录的更多相关文章

  1. Android开发EditText属性

    Android开发EditText属性 EditText继承关系:View-->TextView-->EditText EditText的属性很多,这里介绍几个:android:hint= ...

  2. Android开发-Android Studio问题以及解决记录

    [Android开发] Android Studio问题以及解决记录   http://blog.csdn.net/niubitianping/article/details/51400721 1.真 ...

  3. Android应用开发EditText文本内容变化监听方法

    import android.app.Activity; import android.os.Bundle; import android.text.Editable; import android. ...

  4.  paip.android环境搭建与开发事例

    paip.android环境搭建与开发事例 好长时间没有玩AndROID了..以前常常做ANDROID的,今天决定在下载一个要做个时间设置器 作者Attilax ,  EMAIL:1466519819 ...

  5. Android 个人手机通讯录开发

    一.Android 个人手机通讯录开发 数据存储:SQLite 数据库 开发工具:Android Studio 二.Phone Module 简介 1. 界面展示                2. ...

  6. Android与Swift iOS开发:语言与框架对比

    Swift是现在Apple主推的语言,2014年新推出的语言,比Scala等“新”语言还要年轻10岁.2015年秋已经开源.目前在linux上可用,最近已经支持Android NDK:在树莓派上有Sw ...

  7. Android开发学习——搭建开发环境

    在学校开课学习了android的一些简单的UI组件,布局,四大组件学习了2个,数据存储及网络通信,都是一些简单的概念,入门而已.许多东西需要自己去学习. 学习一下 Android开发环境的搭建,两种方 ...

  8. 【Android UI设计与开发】第05期:引导界面(五)实现应用程序只启动一次引导界面

    [Android UI设计与开发]第05期:引导界面(五)实现应用程序只启动一次引导界面 jingqing 发表于 2013-7-11 14:42:02 浏览(229501) 这篇文章算是对整个引导界 ...

  9. 总结android项目的基本开发步骤(转帖)

    总结android项目的基本开发步骤(转帖)   做了几个android企业应用项目后,总结了项目的基本开发步骤,希望能够交流.一 应用规划:    ※确定功能.    ※必须的界面及界面跳转的流程. ...

随机推荐

  1. Thymeleaf的学习

    1.引入依赖 maven中直接引入 <dependency> <groupId>org.springframework.boot</groupId> <art ...

  2. Memory barrier,

    A memory barrier, also known as a membar, memory fence or fence instruction, 是一种屏障指令,它使中央处理单元(CPU)或编 ...

  3. HDU-1226-超级密码-队列+广搜+大数取模

    Ignatius花了一个星期的时间终于找到了传说中的宝藏,宝藏被放在一个房间里,房间的门用密码锁起来了,在门旁边的墙上有一些关于密码的提示信息: 密码是一个C进制的数,并且只能由给定的M个数字构成,同 ...

  4. spring-boot-configuration-processor

    spring默认使用yml中的配置,但有时候要用传统的xml或properties配置,就需要使用spring-boot-configuration-processor了 引入pom依赖 <de ...

  5. Mysql命令增加、修改、删除表字段

    alter add 命令用来增加表的字段: alter add命令格式:alter table 表名 add字段 类型 其他:如下所示: ) comment '单位' alter drop 命令删除表 ...

  6. python包下载路径

    python所有包.模块镜像站 https://www.lfd.uci.edu/~gohlke/pythonlibs/

  7. Linux ls 命令实现(简化版)

    在学习linux系统编程的时候,实现了ls命令的简化版本号. 实现的功能例如以下: 1. 每种文件类型有自己的颜色 (- 普通文件, d 文件夹文件, l 链接文件. c 字符设备文件. b 快设备文 ...

  8. 基于NEO4J的高级检索功能

    基于NEO4J的高级检索 一.需求 二.创建索引 1.索引自动更新配置 2.执行带有索引自动更新配置的过程 三.查询索引 1.LUCENE查询语法 2.实现高级检索的核心:LUCENE QUERY语句 ...

  9. mysql 09章_存储过程和函数

    一. 函数和存储过程的相同点: 函数和存储过程都是事先预编译并保存在数据库中的特殊的数据库对象, 需要执行相应功能时就可以直接通过“函数名”.“存储过程”调用其中的代码,以提高执行效率和代码的复用性. ...

  10. 关于jquery的一些插件

    1.fullPage.js插件 fullPage.js 是一个基于 jQuery 的插件,它能够很方便.很轻松的制作出全屏网站.如今我们经常能见到全屏网站,在手机上也经常能看到一些活动页面.这些网站用 ...