首页 > 系统 > Android > 正文

Android 中自定义Dialog样式的Activity点击空白处隐藏软键盘功能(dialog不消失)

2019-12-12 02:59:46
字体:
来源:转载
供稿:网友

一、需求触发场景:

项目中需要开发带有EditText的Dialog显示,要求在编辑完EditText时,点击Dilog的空白处隐藏软键盘。但是Dialog不会消失。示例如下:

二、实现方法:

发布需求时,我个人曾想过直接通过new的方式直接创建Dialog,经过多次尝试,无法实现要求,所以采用将Activity设置为Dialog样式进行展示,调用方法实现需求。具体实现如下:

本次演示示例的工程结构:

2.1AndroidMainfest.xml配置文件

需要在配置文件中将需要显示为dialog样式的activity添加dialog主题(可调用系统自带也可以自定义主题添加)

<?xml version="1.0" encoding="utf-8"?><manifest xmlns:android="http://schemas.android.com/apk/res/android"  package="com.panhouye.dialoginput">  <application    android:allowBackup="true"    android:icon="@mipmap/ic_launcher"    android:label="@string/app_name"    android:supportsRtl="true"    android:theme="@style/AppTheme">    <activity android:name=".MainActivity">      <intent-filter>        <action android:name="android.intent.action.MAIN" />        <category android:name="android.intent.category.LAUNCHER" />      </intent-filter>    </activity>    <activity android:name=".Main2Activity"      android:theme="@style/Base.V7.Theme.AppCompat.Light.Dialog"></activity>  </application></manifest>

2.2Java实现代码

(1)BaseActivity作为本次Demo中Activity的基类,代码实现如下:

package com.panhouye.dialoginput;import android.content.Context;import android.support.v7.app.AppCompatActivity;import android.view.MotionEvent;import android.view.inputmethod.InputMethodManager;/** * Created by pamhouye on 2017/4/25 0025. */public class BaseActivity extends AppCompatActivity {  @Override  public boolean onTouchEvent(MotionEvent event) {    // TODO Auto-generated method stub    if(event.getAction() == MotionEvent.ACTION_DOWN){      if(getCurrentFocus()!=null && getCurrentFocus().getWindowToken()!=null){        InputMethodManager manager = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);        manager.hideSoftInputFromWindow(getCurrentFocus().getWindowToken(), InputMethodManager.HIDE_NOT_ALWAYS);      }    }    return super.onTouchEvent(event);  }}

(2)MainActivity实现代码如下:

package com.panhouye.dialoginput;import android.content.Intent;import android.os.Bundle;import android.view.View;public class MainActivity extends BaseActivity {  @Override  protected void onCreate(Bundle savedInstanceState) {    super.onCreate(savedInstanceState);    setContentView(R.layout.activity_main);  }  //dialog按钮触发事件方法  public void dialog(View view){    Intent intent = new Intent(this,Main2Activity.class);    startActivity(intent);  }}

(3)Main2Activity作为dialog样式的Activity实现代码如下:

package com.panhouye.dialoginput;import android.os.Bundle;import android.view.Gravity;import android.view.Window;import android.view.WindowManager;public class Main2Activity extends BaseActivity {  @Override  protected void onCreate(Bundle savedInstanceState) {    super.onCreate(savedInstanceState);    setContentView(R.layout.activity_main2);    //设置窗口对齐屏幕宽度    Window win = this.getWindow();    win.getDecorView().setPadding(0, 0, 0, 0);    WindowManager.LayoutParams lp = win.getAttributes();    lp.width = WindowManager.LayoutParams.MATCH_PARENT;    lp.height = WindowManager.LayoutParams.WRAP_CONTENT;    lp.gravity = Gravity.CENTER;//设置对话框置顶显示    win.setAttributes(lp);    //设置点击外部空白处可以关闭Activity    this.setFinishOnTouchOutside(true);  }}

以上所述是小编给大家介绍的Android 中自定义Dialog样式的Activity点击空白处隐藏软键盘功能(dialog不消失),希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对武林网网站的支持!

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表