关闭Android默认键盘onClick的EditText

时间:2016-03-03 07:57:30

标签: java android keyboard

好!所以这个问题有很多答案。但它都不适合我。也许我在某个地方出错了。

我想要做的是,当我点击我的EditText时,我不想弹出默认的android软键盘。

这是我的xml文件

activity_main.xml中

<LinearLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:paddingTop="0dp"
        android:layout_marginTop="0dp"
        android:orientation="horizontal"
        android:focusableInTouchMode="true"
        >

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="INR"
            android:textSize="28dp"
            android:layout_marginTop="12dp"
            android:layout_marginLeft="55dp"
            ></TextView>

        <ImageView
            android:layout_width="55dp"
            android:layout_height="55dp"
            android:layout_marginLeft="15dp"
            android:src="@drawable/indiaflag"
            />

        <EditText
            android:id="@+id/secondText"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_gravity="center"
            android:layout_weight="1"
            android:layout_marginLeft="70dp"
            android:textSize="28dp"
            android:text=""
            />
    </LinearLayout>

这是隐藏键盘的代码,我使用InputMethodManager来点击EditText时不显示键盘

secondText = (EditText) findViewById(R.id.secondText);
 InputMethodManager imm =  (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
        imm.showSoftInput(secondText, InputMethodManager.HIDE_NOT_ALWAYS);

我在声明第二个文本后立即在OnCreate中使用此代码,但这不起作用。我甚至尝试了另一种在setOnClickListener上使用上述代码的方法。但仍然没有成功。

谁能告诉我哪里出错了? 提前致谢

2 个答案:

答案 0 :(得分:1)

使用此功能隐藏keyboared

 public static void hide_keyboard(Activity activity) {
    InputMethodManager inputMethodManager = (InputMethodManager) activity.getSystemService(Activity.INPUT_METHOD_SERVICE);
    View view = activity.getCurrentFocus();
    if (view == null) 
        view = new View(activity);
    inputMethodManager.hideSoftInputFromWindow(view.getWindowToken(), 0);
}

答案 1 :(得分:0)

添加:

secondText.setInputType(InputType.TYPE_NULL);
InputMethodManager imm = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);
imm.hideSoftInputFromWindow(secondText.getWindowToken(), InputMethodManager.HIDE_IMPLICIT_ONLY);

而不是

secondText.setInputType(InputType.TYPE_NULL);

使用

 OnTouchListener otl = new OnTouchListener() {
      @Override
      public boolean onTouch(View v, MotionEvent event) {
          switch (event.getAction()) {
          case MotionEvent.ACTION_DOWN:
              Layout layout = ((EditText) v).getLayout();
              float x = event.getX() + secondText.getScrollX();
              int offset = layout.getOffsetForHorizontal(0, x);
              if(offset>0)
                  if(x>layout.getLineMax(0))
                      secondText.setSelection(offset);     // touch was at end of text
                  else
                      secondText.setSelection(offset - 1);
              break;
              }
          return true;
          }
      };
      secondText.setOnTouchListener(otl);