Android监听软键盘显示与隐藏状态来动态改变布局

在做Android程序时,遇到这么一种情况。

当软键盘不显示时,底部布局如下。


其中红框是一个编辑框EditText,下同。

当软键盘弹出后,底部布局如下。



整体布局文件如下(只显示相关部分)

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/all_rell"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@color/white">
	
	<!--中间部分省略-->
	
	
	<!--底部信息框-->
	<RelativeLayout
        android:id="@+id/bottom_rel"
        android:layout_width="match_parent"
        android:layout_height="@dimen/dimen_40_dp"
        android:layout_alignParentBottom="true"
        android:layout_alignParentLeft="true"
        android:layout_alignParentStart="true"
        android:background="@color/gray"
        android:gravity="center_vertical">

        <ImageView
            android:id="@+id/exit_image"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerVertical="true"
            android:layout_marginLeft="@dimen/dimen_5_dp"
            android:layout_marginRight="@dimen/dimen_5_dp"
            android:background="@drawable/write_comment"
            android:padding="@dimen/dimen_12_dp" />

        <ImageButton
            android:id="@+id/botom_more"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentRight="true"
            android:layout_centerVertical="true"
            android:src="@drawable/write_3circle" />

        <ImageButton
            android:id="@+id/share"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerVertical="true"
            android:layout_toLeftOf="@id/botom_more"
            android:padding="@dimen/dimen_5_dp"
            android:src="@drawable/share" />

        <TextView
            android:id="@+id/commnet_number"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerVertical="true"
            android:layout_marginRight="@dimen/dimen_5_dp"
            android:layout_toLeftOf="@id/share"
            android:drawableLeft="@drawable/comment"
            android:drawablePadding="@dimen/dimen_10_dp"
            android:text="214" />

        <TextView
            android:id="@+id/send"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentRight="true"
            android:layout_centerVertical="true"
            android:padding="@dimen/dimen_10_dp"
            android:text="发送"
            android:visibility="gone" />

        <EditText
            android:id="@+id/comment_text"
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:layout_toLeftOf="@id/commnet_number"
            android:layout_toRightOf="@id/exit_image"
            android:background="@null"
            android:hint="写评论" />
    </RelativeLayout>
</RelativeLayout>

现在的需求为,监听软键盘的状态,当软键盘状态改变时,布局也会改变。为了达到效果,则可以通过使Activity实现View.OnLayoutChangeListener这个接口来实现。

首先,必须使Activity实现View.OnLayoutChangeListener接口,并且实现onLayoutChange这个方法,代码如下

public class NewsActivity extends BaseActivity implements View.OnLayoutChangeListener{

    /*
    根布局改变监听事件
     */
    @Override
    public void onLayoutChange(View v, int left, int top, int right, int bottom, int oldLeft, int oldTop, int oldRight, int oldBottom) {
        
    }
}


其中参数含义如下:

int left,int top,int right,int bottom为软键盘改变后的窗体可见部分的坐标,

int oldLeft,int oldTop,int oldRight,int oldBottom为软键盘改变前的窗体可见部分的坐标。

假定软键盘弹出后所占的高度为屏幕高度的1/3,那么,根据Android中的坐标体系可知,当(oldBottom-bottom)>屏幕高度的1/3时(原来的屏幕高度比现在的屏幕高度要高),我们就可以认为,此时软键盘是显示的;而当(bottom-oldBottom)>屏幕高度的1/3时(现在的屏幕高度比原来的屏幕高度要高),我们就可以认为,此时软键盘是隐藏的。

所以,我们实现功能的代码如下:

/*
    根布局改变监听事件
     */
    @Override
    public void onLayoutChange(View v, int left, int top, int right, int bottom, int oldLeft, int oldTop, int oldRight, int oldBottom) {
        //假定软键盘弹出后所占高度为屏幕高度的1/3
        if(oldBottom != 0 && bottom != 0 && (oldBottom - bottom > ScreenUtils.getScreenHeight(this)/3)){
            //软键盘显示
            commnetNumber.setVisibility(View.GONE);
            botomMore.setVisibility(View.GONE);
            share.setVisibility(View.GONE);
            send.setVisibility(View.VISIBLE);
            //编辑框长度
            RelativeLayout.LayoutParams params= (RelativeLayout.LayoutParams) commentText.getLayoutParams();
            params.setMargins(0,0, DensityUtils.dp2px(this,50),0);
            commentText.setLayoutParams(params);
        }else if(oldBottom != 0 && bottom != 0 && (bottom - oldBottom > ScreenUtils.getScreenHeight(this)/3)){
            //软键盘隐藏
            commnetNumber.setVisibility(View.VISIBLE);
            botomMore.setVisibility(View.VISIBLE);
            share.setVisibility(View.VISIBLE);
            send.setVisibility(View.GONE);
            //编辑框长度
            RelativeLayout.LayoutParams params= (RelativeLayout.LayoutParams) commentText.getLayoutParams();
            params.setMargins(0,0, 0,0);
            commentText.setLayoutParams(params);
        }
    }

然后给根布局添加状态改变监听事件就可以了

@Override
    protected void onResume() {
        super.onResume();
        //给根布局添加状态监听器
        allRel.addOnLayoutChangeListener(this);
    }

这样,在软键盘显示状态改变时,我们就可以动态改变布局了!

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
要在Android应用程序中监听软键盘状态并在软键盘打开时将其隐藏,可以使用以下代码: 1. 首先,在你的 activity 的 onCreate 方法中获取根布局并设置以下属性: ``` final View activityRootView = findViewById(R.id.activityRoot); activityRootView.getViewTreeObserver().addOnGlobalLayoutListener(new OnGlobalLayoutListener() { @Override public void onGlobalLayout() { int heightDiff = activityRootView.getRootView().getHeight() - activityRootView.getHeight(); if (heightDiff > dpToPx(MyActivity.this, 200)) { // 如果高度差超过 200 dp,就认为软键盘打开了 hideSoftKeyboard(MyActivity.this); // 隐藏软键盘 } } }); ``` 其中,`activityRootView` 是你的 activity 的根布局,`OnGlobalLayoutListener` 是一个监听布局变化的接口,`heightDiff` 是根布局高度和 activity 高度的差值,`dpToPx` 是一个将 dp 转化为 px 的方法,`hideSoftKeyboard` 是将软键盘隐藏的方法。 2. 然后,编写 `dpToPx` 和 `hideSoftKeyboard` 方法: ``` public static int dpToPx(Context context, int dp) { DisplayMetrics metrics = context.getResources().getDisplayMetrics(); return (int) TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, dp, metrics); } public static void hideSoftKeyboard(Activity activity) { InputMethodManager inputMethodManager = (InputMethodManager) activity.getSystemService(Activity.INPUT_METHOD_SERVICE); View currentFocusView = activity.getCurrentFocus(); if (currentFocusView != null) { inputMethodManager.hideSoftInputFromWindow(currentFocusView.getWindowToken(), 0); } } ``` 其中,`dpToPx` 方法将 dp 转化为 px,`hideSoftKeyboard` 方法接收一个 Activity 对象并使用 `InputMethodManager` 和 `getCurrentFocus` 方法获取当前的焦点视图并将软键盘隐藏
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值