소프트 키보드 의 팝 업 과 숨 김 을 검사 합 니 다 [절대 클래식, 좋 습 니 다]
5607 단어 소프트 키보드
다음으로 이동:
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>
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
ScrollView 의 소프트 키보드 팝 업 은 여전히 컨트롤 을 가 립 니 다.Activity 페이지 에 서 는 사용자 가 입력 해 야 할 텍스트 컨트롤 인 EditText 가 자주 있 습 니 다. 이 두 단계 의 조작 을 통 해 소프트 키 보드 를 팝 업 할 때 소프트 키보드 에 가 려 지고...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.