소프트 키보드 의 팝 업 과 숨 김 을 검사 합 니 다 [절대 클래식, 좋 습 니 다]

5607 단어 소프트 키보드
사용자 정의 레이아웃 을 사용 합 니 다. 페이지 레이아웃 에는 ScrollVIEW 가 포함 되 어 있 습 니 다. 소프트 키보드 가 켜 지면 레이아웃 의 높이 가 바 뀌 고 레이아웃 의 높이 에 따라 소프트 키보드 의 상 태 를 판단 합 니 다.
다음으로 이동:
http://www.eoeandroid.com/thread-157446-1-1.html
1. 레이아웃 클래스 키보드 레이아웃 새로 만 들 기

/**   
 * @   : KeyboardLayout.java 
 * @  com.nhii.widget 
 * @  : TODO(            ) 
 * @  :MaLijun   
 * @     2013-12-15   10:16:37 
 * @   V1.0  
 */
package com.nhii.widget;

import android.content.Context;
import android.util.AttributeSet;
import android.util.Log;
import android.widget.RelativeLayout;

public class KeyboardLayout extends RelativeLayout {
	private static final String TAG = KeyboardLayout.class.getSimpleName();
	public static final byte KEYBOARD_STATE_SHOW = -3;
	public static final byte KEYBOARD_STATE_HIDE = -2;
	public static final byte KEYBOARD_STATE_INIT = -1;
	private boolean mHasInit;
	private boolean mHasKeybord;
	private int mHeight;
	private onKybdsChangeListener mListener;

	public KeyboardLayout(Context context, AttributeSet attrs, int defStyle) {
		super(context, attrs, defStyle);
	}

	public KeyboardLayout(Context context, AttributeSet attrs) {
		super(context, attrs);
	}

	public KeyboardLayout(Context context) {
		super(context);
	}

	/** * set keyboard state listener */
	public void setOnkbdStateListener(onKybdsChangeListener listener) {
		mListener = listener;
	}

	@Override
	protected void onLayout(boolean changed, int l, int t, int r, int b) {
		super.onLayout(changed, l, t, r, b);
		if (!mHasInit) {
			mHasInit = true;
			mHeight = b;
			if (mListener != null) {
				mListener.onKeyBoardStateChange(KEYBOARD_STATE_INIT);
			}
		} else {
			mHeight = mHeight < b ? b : mHeight;
		}
		if (mHasInit && mHeight > b) {
			mHasKeybord = true;
			if (mListener != null) {
				mListener.onKeyBoardStateChange(KEYBOARD_STATE_SHOW);
			}
			Log.w(TAG, "show keyboard.......");
		}
		if (mHasInit && mHasKeybord && mHeight == b) {
			mHasKeybord = false;
			if (mListener != null) {
				mListener.onKeyBoardStateChange(KEYBOARD_STATE_HIDE);
			}
			Log.w(TAG, "hide keyboard.......");
		}
	}

	public interface onKybdsChangeListener {
		public void onKeyBoardStateChange(int state);
	}
}

2. activity 중

package com.nhii.ui;

import android.content.pm.ActivityInfo;
import android.os.Bundle;
import android.view.Window;
import android.widget.Toast;
import com.nhii.R;
import com.nhii.widget.KeyboardLayout;
import com.nhii.widget.KeyboardLayout.onKybdsChangeListener;
import com.ta.annotation.TAInjectView;

public class TestPageActivity extends BaseActivity {

	@TAInjectView(id = R.id.keyboardLayout1)
	KeyboardLayout mainView;
	
	@Override
	protected void onPreOnCreate(Bundle savedInstanceState) {
		super.onPreOnCreate(savedInstanceState);
		//     
		this.requestWindowFeature(Window.FEATURE_NO_TITLE);
		//     
		this.setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);
	}

	@Override
	protected void onAfterSetContentView() {
		super.onAfterSetContentView();
		mainView.setOnkbdStateListener(new onKybdsChangeListener() {
			public void onKeyBoardStateChange(int state) {
				switch (state) {
				case KeyboardLayout.KEYBOARD_STATE_HIDE:
					Toast.makeText(getApplicationContext(), "     ", Toast.LENGTH_SHORT).show();
					break;                                 
				case KeyboardLayout.KEYBOARD_STATE_SHOW:
					Toast.makeText(getApplicationContext(), "     ", Toast.LENGTH_SHORT).show();
					break;
				}
			}
		}); 
	}
}

3. xml 페이지

<com.nhii.widget.KeyboardLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/keyboardLayout1"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="@color/light_pink"
    android:orientation="vertical" >
    <ScrollView
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:layout_alignParentLeft="true"
        android:layout_alignParentTop="true"
        android:fillViewport="true" >
        <LinearLayout
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:orientation="vertical" >
            <EditText
                android:id="@+id/testone_et"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:hint="   ..." />
        </LinearLayout>
    </ScrollView>
</com.nhii.widget.KeyboardLayout>

좋은 웹페이지 즐겨찾기