禁用选号软键盘

我试图在使用 NumberPicker 输入数值时关闭软键盘(出于美学原因)。这是我的布局 xml 代码:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >


<LinearLayout
android:id="@+id/linearLayout2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:layout_marginBottom="30dp"
android:layout_marginTop="30dp" >


<NumberPicker
android:id="@+id/repetitionPicker"
android:layout_width="40dp"
android:layout_height="wrap_content" />


<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:text="@string/repetitions_short_divider"
android:textAppearance="?android:attr/textAppearanceMedium" />


<NumberPicker
android:id="@+id/weightPicker"
android:layout_width="40dp"
android:layout_height="wrap_content"
android:layout_marginLeft="40dp" />


<TextView
android:id="@+id/textView2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:text="@string/pounds"
android:textAppearance="?android:attr/textAppearanceMedium" />
</LinearLayout>




<Button
android:id="@+id/saveButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:text="@string/save" />


</LinearLayout>

最后,这是我尝试在 onCreate ()-方法中阻塞键盘的代码:

// hide keyboard
View.OnClickListener disableKeyBoardListener = new View.OnClickListener() {
public void onClick(View v) {
((InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE))
.hideSoftInputFromWindow(v.getWindowToken(), InputMethodManager.HIDE_NOT_ALWAYS);
}
};


((EditText) weightPicker.getChildAt(1)).setInputType(InputType.TYPE_NULL);
((EditText) repetitionPicker.getChildAt(1)).setInputType(InputType.TYPE_NULL);


((EditText) weightPicker.getChildAt(1)).setOnClickListener(disableKeyBoardListener);
//((EditText) repetitionPicker.getChildAt(1)).setOnClickListener(disableKeyBoardListener);
//weightPicker.setOnClickListener(disableKeyBoardListener);
//repetitionPicker.setOnClickListener(disableKeyBoardListener);


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

遗憾的是,当点击数字选择器时,软键盘仍然会出现。有什么主意吗?

58270 次浏览

通过阅读 com/android/Internal/widget/NumberPicker.java 源代码,我得到了以下解决方案:

// Hide soft keyboard on NumberPickers by overwriting the OnFocusChangeListener
OnFocusChangeListener fcl = new OnFocusChangeListener() {
public void onFocusChange(View v, boolean hasFocus) {
// Do nothing to suppress keyboard
}
};


((EditText) numberPicker.getChildAt(1)).setOnFocusChangeListener(fcl);


// Suppress soft keyboard from the beginning
((EditText) numberPicker.getChildAt(1)).setInputType(InputType.TYPE_NULL);

只是增强了@MaxVogler 的安全性(所以如果你也想投@MaxVogler 的票) ,并使它成为一个强大的黑客。我们也不需要调用 setOnFocusChangeListenersetInputType。只有 setFocusable到 false 才行。

下面是一个辅助 API,用于启用/禁用该特性

public static void enableNumberPickerManualEditing(NumberPicker numPicker,
boolean enable) {
int childCount = numPicker.getChildCount();


for (int i = 0; i < childCount; i++) {
View childView = numPicker.getChildAt(i);


if (childView instanceof EditText) {
EditText et = (EditText) childView;
et.setFocusable(enable);
return;
}
}
}

刚刚发现了这个,非常有效:

myNumberPicker.setDescendantFocusability(NumberPicker.FOCUS_BLOCK_DESCENDANTS);

您还可以在 XML 中设置:

android:descendantFocusability="blocksDescendants"

这里还有另一种方法,如果用户想编辑数字,它仍然可以让用户编辑-它只是抑制软键盘最初。当界面第一次按照上面的答案显示时,使用 NumberPicker.setDescendantFocusability(FOCUS_BLOCK_DESCENDANTS)来禁止软键盘。然后得到你的对话框或活动来实现 View.OnTouchListener,在你的 NumberPicker上调用 setOnTouchListener(this),并且在你的 onTouch(View v,MotionEvent e)实现中重置数字选择器的后代可聚焦性到它的正常值,然后返回 false。

返回 false 意味着触摸仍然由 NumberPicker 处理,这意味着如果用户点击编辑框,软键盘就会出现。这正是我想要面对的同样的问题-让软键盘出现对话框时,它第一次显示是不愉快的,因为它移动对话框后,它出现。

public class GetBufferDialog extends DialogFragment implements View.OnTouchListener {

onCreateDialog()方法中创建 Dialog 并找到 NumberPicker 之后:

m_oldFocus = m_numberpicker.getDescendantFocusability();
m_numberpicker.setDescendantFocusability(NumberPicker.FOCUS_BLOCK_DESCENDANTS);
m_numberpicker.setOnTouchListener(this);

这是 OnTouch 的方法:

public boolean onTouch(View v, MotionEvent event) {
m_numberpicker.setDescendantFocusability(m_oldFocus);
return false;
}

我发现最简单的工作是:

numberPicker               = (NumberPicker) myDialogView.findViewById(R.id.myViewId);
EditText numberPickerChild = (EditText) numberPicker.getChildAt(0);
numberPickerChild.setFocusable(false);
numberPickerChild.setInputType(InputType.TYPE_NULL);
/**
* set focus to top level window
* disposes descendant focus
* disposes softInput
* @param context - activity context
* @param enable - state of focus
* */
public static void topLevelFocus(Context context, boolean enable){
if(Activity.class.isAssignableFrom(context.getClass())){
ViewGroup tlView = (ViewGroup) ((Activity) context).getWindow().getDecorView();
if(tlView!=null){
tlView.setFocusable(enable);
tlView.setFocusableInTouchMode(enable);
tlView.setDescendantFocusability(ViewGroup.FOCUS_BEFORE_DESCENDANTS);
tlView.requestFocus();
}
}
}

称之为 * :

  • 将不会阻止后代可聚焦性(数字选择器将是可编辑的)

  • 将在创建时隐藏软输入

  • 之前(处理输入) getValue ()将允许获得适当的值


Andrew Webber 答案的 XML 版本

android:descendantFocusability="blocksDescendants"

例子

<NumberPicker
android:id="@+id/your_numberpicker"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:descendantFocusability="blocksDescendants"/>

我不知道为什么它工作,但设置 OnClickListener,没有任何阻止键盘显示(棒棒糖)

numberPicker.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
}
});

如果您只想在使用数字选择器加载视图时隐藏软件键盘,但仍希望用户能够在加载视图后进行编辑,那么您不应该阻止后代可聚焦性。相反,只要防止数字选择器成为视图中的第一个焦点项就可以了。

详情请参阅 这个答案

基于上述答案:

    <!-- Dummy item to prevent Number Picker from receiving focus -->
<LinearLayout
android:focusable="true"
android:focusableInTouchMode="true"
android:layout_width="0px"
android:layout_height="0px"/>


<!-- :nextFocusUp and :nextFocusLeft have been set to the id of this component
to prevent the dummy from receiving focus again -->
<NumberPicker
android:id="@+id/number_picker"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:nextFocusUp="@id/number_picker"
android:nextFocusLeft="@id/number_picker"/>

工作代码 编程方式:

mp.setDescendantFocusability(NumberPicker.FOCUS_BLOCK_DESCENDANTS);

XML:

android:descendantFocusability="blocksDescendants"

这个扩展很好,不要忘记如何做,并有可读的代码。它隐藏了一些实现细节,但在这种情况下,我相信它是可以接受的:

fun NumberPicker.disableTextEditing(disable: Boolean) {
descendantFocusability = if (disable) FOCUS_BLOCK_DESCENDANTS else FOCUS_BEFORE_DESCENDANTS
}