Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> Android開發 >> 關於android開發 >> android 打開軟鍵盤,android鍵盤

android 打開軟鍵盤,android鍵盤

編輯:關於android開發

android 打開軟鍵盤,android鍵盤


<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >
    <!-- 定義顯示軟鍵盤按鈕 -->
    <Button
        android:id="@+id/btn_soft"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="彈出/關閉軟鍵盤" />

</LinearLayout>
package com.example.yanlei.yl2;

import android.content.Context;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.view.View;
import android.view.View.OnClickListener;
import android.view.inputmethod.InputMethodManager;
import android.widget.Button;


public class MainActivity extends AppCompatActivity {
    // 定義軟鍵盤的按鈕
    private Button btnSoft;
    //聲明InputMethodManager對象
    InputMethodManager imm ;
    //聲明一個textview

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        //取得InputMethodManager對象
        imm = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);
        //得到布局中的所有對象
        findView();
        //設置對象的監聽器
        setListener();
    }

    private void findView() {
        // 得到布局中的所有對象
        btnSoft = (Button) findViewById(R.id.btn_soft);
    }
    //設置對象的監聽器
    private void setListener() {
        btnSoft.setOnClickListener(listener);
    }
    OnClickListener listener=new OnClickListener() {

        @Override
        public void onClick(View v) {
            // TODO Auto-generated method stub
            //第一次調用顯示,再次調用則隱藏,如此反復
            //觸發軟鍵盤,InputMethodManager.HIDE_NOT_ALWAYS能夠正常的隱藏,除非遇到SHOW_FORCED.
            imm.toggleSoftInput(0, InputMethodManager.HIDE_NOT_ALWAYS);
        }
    };
}

 

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved