gpt4 book ai didi

android - AlertDialog 中的 NumberPicker 始终激活键盘。如何禁用此功能?

转载 作者:IT老高 更新时间:2023-10-28 23:20:57 31 4
gpt4 key购买 nike

致各位

我正在尝试让一个简单的 NumberPicker 在 AlertDialog 中工作。问题是每当我增加/减少数字选择器中的值时,键盘都会激活。

有很多帖子描述了这个问题,但没有一个建议有效。我试过了:

android:configChanges="keyboard|keyboardHidden"

inputManager.hideSoftInputFromWindow(currentView.getWindowToken(), 0);

还有

getWindow().setSoftInputMode(
WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_HIDDEN);

我曾尝试在初始化之前和之后调用这些函数(dialog.show ())、按键事件(显然使用监听器)等,但到目前为止没有运气。

完整代码:

popup.xml

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
<NumberPicker
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/myNumber"
android:configChanges="keyboard|keyboardHidden"
/>
</RelativeLayout>

以及调用函数:

AlertDialog.Builder builder =  new AlertDialog.Builder(this);
builder.setPositiveButton(android.R.string.ok, new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
return;
} });
builder.setNegativeButton(android.R.string.cancel, new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
return;
} });
View view = getLayoutInflater().inflate(R.layout.popup, null);
builder.setView (view);

final AlertDialog dialog = builder.create ();
NumberPicker picker = (NumberPicker) view.findViewById(R.id.myNumber);
picker.setMinValue(0);
picker.setMaxValue(999);

dialog.getWindow().
setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_HIDDEN);
dialog.show();

任何帮助表示赞赏

巴里

最佳答案

实际上,虽然上面的解决方案完美无缺,但还有一种更简单的方法。

picker.setDescendantFocusability(NumberPicker.FOCUS_BLOCK_DESCENDANTS);

这就是我们所需要的。无论如何,谢谢你的回复!!!! :-)

关于android - AlertDialog 中的 NumberPicker 始终激活键盘。如何禁用此功能?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10996880/

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