2016-10-11 5 views
2

私のアプリにはautocompletetextviewのダイアログがありますが、ソフトキーボードの上部に合わせてドロップダウンリストが配置されています。アイテム。ここでダイアログボックスのソフトキーボードの裏にオートコンプトテキストビューのドロップダウンがあります

レイアウトです:

<?xml version="1.0" encoding="utf-8"?> 
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content" 
    android:gravity="center" 
    android:padding="10dp" 
    android:orientation="horizontal" 
    android:windowSoftInputMode="adjustPan|adjustResize"> 

    <android.widget.AutoCompleteTextView 
     android:layout_width="0dp" 
     android:layout_height="wrap_content" 
     android:id="@+id/customDialogAtocompleteTextview" 
     android:layout_weight=".7" 
     android:layout_gravity="top" /> 

    <LinearLayout 
     android:orientation="vertical" 
     android:layout_width="0dp" 
     android:layout_height="wrap_content" 
     android:layout_weight=".3"> 
     <Button 
      android:id="@+id/customDialogBtOk" 
      android:layout_width="match_parent" 
      android:layout_height="wrap_content" 
      android:text="Aceptar"/> 
     <Button 
      android:id="@+id/customDialogBtSearch" 
      android:layout_width="match_parent" 
      android:layout_height="wrap_content" 
      android:text="Buscar"/> 
     <Button 
      android:id="@+id/customDialogBtMore" 
      android:layout_width="match_parent" 
      android:layout_height="wrap_content" 
      android:text="Mas"/> 
    </LinearLayout> 

</LinearLayout> 

のでは、どのように私はそれがキーボードに合わせて作ることができますか?

答えて

6

理論は、あなたがプログラム的に同じことをしなければならないので、android:windowSoftInputMode="adjustPan|adjustResize"これを行うshoulが、何らかの理由でそれがないことを言う:

getDialog().getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE); 

Aaaaaand魔法は

起こります
関連する問題