gpt4 book ai didi

android - 按下 Android 后退按钮完成 Activity ,即使软键盘已打开

转载 作者:搜寻专家 更新时间:2023-11-01 08:25:27 25 4
gpt4 key购买 nike

在我的 Activity 中,软键盘或多或少应该总是打开的。因此,当用户按下后退按钮时, Activity 应该会正常结束。但是,默认的 Android 行为是在键盘打开时关闭键盘。这使得用户必须单击两次才能退出 Activity 。如何覆盖此行为,以便在按下后退按钮时 Activity 始终完成,即使软键盘打开也是如此?有一些简单的方法可以做到这一点吗?

我确定这是一个常见问题,但我没有找到这个直接问题。

最佳答案

我有同样的情况。我尝试了很多方法终于找到了解决方案。在这里,我将与您分享。我已经使用 CustomEditText 解决了这个问题。

CustomEditText.Java

public class CustomEditText extends android.support.v7.widget.AppCompatEditText {


public CustomEditText(Context context, AttributeSet attrs) {
super(context, attrs);
}

OnKeyPreImeListener onKeyPreImeListener;

public void setOnKeyPreImeListener(OnKeyPreImeListener onKeyPreImeListener) {
this.onKeyPreImeListener = onKeyPreImeListener;
}

@Override
public boolean onKeyPreIme(int keyCode, KeyEvent event) {
if (keyCode == KeyEvent.KEYCODE_BACK && event.getAction() == KeyEvent.ACTION_UP) {
if(onKeyPreImeListener != null)
onKeyPreImeListener.onBackPressed();
return false;
}
return super.dispatchKeyEvent(event);
}

public interface OnKeyPreImeListener {
void onBackPressed();
}
}

MainActivity.Java

public class MainActivity extends BaseActivity{

private CustomEditText editSearchMenu;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
editSearchMenu =
(CustomEditText)findViewById(R.id.editSearchMenu);

//Initialise interface
CustomEditText.OnKeyPreImeListener onKeyPreImeListener=new CustomEditText.OnKeyPreImeListener() {
@Override
public void onBackPressed() {
((MainActivity)getActivity()).finish();
}
};

editSearchMenu.setOnKeyPreImeListener(onKeyPreImeListener);

}

}

xml文件

<com.app.helper.CustomEditText
android:id="@+id/editSearchMenu"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="@dimen/diam5dp"
android:background="@drawable/custom_rounded_edittext"
android:drawableLeft="@drawable/ico_search"
android:drawablePadding="@dimen/diam20dp"
android:drawableStart="@drawable/ico_search"
android:hint="@string/M_SEARCH_HINT"
android:padding="@dimen/diam10dp"
android:textColor="@android:color/white"
android:textColorHint="@android:color/white"
android:textSize="@dimen/diam16sp" />

希望这会帮助你......这适用于我自己测试过的每台设备......其他解决方案在某些设备中造成问题......也会有一些其他解决方案......如果你有什么让我知道...

关于android - 按下 Android 后退按钮完成 Activity ,即使软键盘已打开,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45747196/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com