码迷,mamicode.com
首页 > 移动开发 > 详细

安卓点击屏幕空白处隐藏软键盘

时间:2015-04-09 23:55:06      阅读:326      评论:0      收藏:0      [点我收藏+]

标签:

安卓开发中遇到问题的解决,网上搜索到的方法有一些问题,故而采用如下方法

方法/步骤

  1. 给activity布局文件加入  id

    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"  

        xmlns:tools="http://schemas.android.com/tools"  

        android:layout_width="fill_parent"  

        android:layout_height="fill_parent"  

        android:scrollbars="vertical"  

        android:id="@+id/activity_main"  

        >  

  2. 按照一般控件的方式进行事件监听。  

    activity_main=(LinearLayout) findViewById(R.id.activity_main);  

    activity_main.setOnTouchListener(new OnTouchListener()  

    {  

                  

        public boolean onTouch(View arg0, MotionEvent arg1)  

        {  

            InputMethodManager imm = (InputMethodManager) getSystemService(INPUT_METHOD_SERVICE);  

            return imm.hideSoftInputFromWindow(getCurrentFocus().getWindowToken(), 0);  

        }  

    });  


安卓点击屏幕空白处隐藏软键盘

标签:

原文地址:http://my.oschina.net/u/1244156/blog/398301

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!