안 드 로 이 드 가상 키보드 팝 업 차단 로그 인 단추 문제 해결 방법

Android 가상 키보드 의 팝 업 은 일부 ui 를 가 릴 수 있 습 니 다.목록 파일 에 설정 하면 가상 키보드 가 팝 업 되면 서 레이아웃 을 위로 밀 수 있 지만 로그 인 인터페이스 에 큰 역할 을 하지 않 아 사용자 체험 이 좋 지 않 습 니 다.개발 중 에 나타 난 이상 해결 하기;먼저 해결 하 는 사고:화면의 높이,가상 키보드 의 높이,구조의 높이 를 얻 고 화면의 높이 로 구조의 높이 를 줄 이 고 높이 차이 와 가상 키보드 의 높이 로 비교 한다.코드 는 다음 과 같다.

private LinearLayout logo_layout;
  private ImageView iv_logo;
  private int sh;
  private int layoutH;
  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    logo_layout=(LinearLayout) findViewById(R.id.logo_layout);
    iv_logo=(ImageView) findViewById(R.id.iv_logo);
    //       
    DisplayMetrics dm = new DisplayMetrics();
    WindowManager windowMgr = (WindowManager)getSystemService(Context.WINDOW_SERVICE);
    windowMgr.getDefaultDisplay().getMetrics(dm);
    sh = dm.heightPixels;
    logo_layout.getViewTreeObserver().addOnGlobalLayoutListener(new OnGlobalLayoutListener() {

      //  layout          
      @Override
      public void onGlobalLayout() {
        logo_layout.getViewTreeObserver().removeGlobalOnLayoutListener(this);
        layoutH = logo_layout.getHeight();
      }
    });
    //                     ,          ,               
    SoftKeyBoardListener.setListener(MainActivity.this, new OnSoftKeyBoardChangeListener() {

      @Override
      public void keyBoardShow(int height) {
        //      
        int h=sh-layoutH;
        if(h>height){//         
          setLayoutH(80);
        }else{
          //         
          int resetH=Math.abs(height+layoutH-sh);
          setLayoutH(resetH);
        }
      }

      @Override
      public void keyBoardHide(int height) {
        //      
        setLayoutH(80);
      }
    });   
  }
  /**
   *         
   */
  private void setLayoutH(int h){
    LinearLayout.LayoutParams layoutParams = (android.widget.LinearLayout.LayoutParams) iv_logo.getLayoutParams();
    layoutParams.topMargin=dip2px(MainActivity.this, h);
    iv_logo.setLayoutParams(layoutParams);
  }
  /** 
   *           dp         px(  ) 
   */ 
  public static int dip2px(Context context,float dpValue) { 
    final float scale =context.getResources().getDisplayMetrics().density; 
    return (int) (dpValue * scale + 0.5f); 
  } 


private View rootView;//activity    
  int rootViewVisibleHeight;//          
  private OnSoftKeyBoardChangeListener onSoftKeyBoardChangeListener;

  public SoftKeyBoardListener(Activity activity) {
    //  activity    
    rootView = activity.getWindow().getDecorView();

    //                                  
    rootView.getViewTreeObserver().addOnGlobalLayoutListener(new ViewTreeObserver.OnGlobalLayoutListener() {
      @Override
      public void onGlobalLayout() {
        //                
        Rect r = new Rect();
        rootView.getWindowVisibleDisplayFrame(r);
        int visibleHeight = r.height();
        if (rootViewVisibleHeight == 0) {
          rootViewVisibleHeight = visibleHeight;
          return;
        }

        //           ,         /        
        if (rootViewVisibleHeight == visibleHeight) {
          return;
        }

        //           200,          
        if (rootViewVisibleHeight - visibleHeight > 200) {
          if (onSoftKeyBoardChangeListener != null) {
            onSoftKeyBoardChangeListener.keyBoardShow(rootViewVisibleHeight - visibleHeight);
          }
          rootViewVisibleHeight = visibleHeight;
          return;
        }

        //           200,          
        if (visibleHeight - rootViewVisibleHeight > 200) {
          if (onSoftKeyBoardChangeListener != null) {
            onSoftKeyBoardChangeListener.keyBoardHide(visibleHeight - rootViewVisibleHeight);
          }
          rootViewVisibleHeight = visibleHeight;
          return;
        }

      }
    });
  }

  private void setOnSoftKeyBoardChangeListener(OnSoftKeyBoardChangeListener onSoftKeyBoardChangeListener) {
    this.onSoftKeyBoardChangeListener = onSoftKeyBoardChangeListener;
  }

  public interface OnSoftKeyBoardChangeListener {
    void keyBoardShow(int height);

    void keyBoardHide(int height);
  }

  public static void setListener(Activity activity, OnSoftKeyBoardChangeListener onSoftKeyBoardChangeListener) {
    SoftKeyBoardListener softKeyBoardListener = new SoftKeyBoardListener(activity);
    softKeyBoardListener.setOnSoftKeyBoardChangeListener(onSoftKeyBoardChangeListener);
  }

이상 에서 자세히 설명 하 였 습 니 다.운행 효 과 는 다음 과 같 습 니 다.

이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.

좋은 웹페이지 즐겨찾기