2017-08-06 95 views
1

我想在我的android應用程序之一使用自定義對話框編輯文本。我想要在鍵盤上顯示對話。我在鍵盤下面隱藏了一半的對話。我無法找到解決方案。讓我知道,如果這裏的專家可以幫助解決這個難題。鍵盤自定義對話Android

我對話的Java代碼就像下面

final Dialog dialog = new Dialog(NameArt.this,R.style.Theme_Dialog); 
    dialog.requestWindowFeature(Window.FEATURE_NO_TITLE); 
    dialog.setContentView(R.layout.lyt_dialog_updatename); 
    //dialog.getWindow().setLayout(ViewGroup.LayoutParams.WRAP_CONTENT,ViewGroup.LayoutParams.WRAP_CONTENT); 
    dialog.getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_VISIBLE); 

和XML是像下面

<?xml version="1.0" encoding="utf-8"?> 
 
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
 
    android:layout_width="fill_parent" 
 
    android:layout_height="wrap_content"> 
 

 
    <EditText 
 
     android:id="@+id/edstikertext" 
 
     android:layout_width="match_parent" 
 
     android:layout_height="match_parent" 
 
     android:gravity="center" 
 
     android:layout_above="@+id/btncancel" 
 
     android:hint="Enter text hear" /> 
 

 
    <Button 
 
     android:id="@+id/btncancel" 
 
     android:layout_width="wrap_content" 
 
     android:layout_height="wrap_content" 
 
     android:layout_alignParentLeft="true" 
 
     android:layout_alignParentStart="true" 
 
     android:layout_marginRight="5dp" 
 
     android:layout_alignParentBottom="true" 
 
     android:layout_marginEnd="5dp" 
 
     android:background="@drawable/boder" 
 
     android:layout_marginTop="5dp" 
 
     android:text=" Cancel " /> 
 

 
    <Button 
 
     android:background="@drawable/boder" 
 
     android:layout_alignParentRight="true" 
 
     android:layout_alignParentEnd="true" 
 
     android:id="@+id/btnok" 
 
     android:layout_width="wrap_content" 
 
     android:layout_height="wrap_content" 
 
     android:layout_alignParentBottom="true" 
 
     android:layout_marginRight="5dp" 
 
     android:layout_marginEnd="5dp" 
 
     android:layout_marginTop="5dp" 
 
     android:text=" OK " /> 
 

 
</RelativeLayout>

和我的風格是像下面

<style name="Theme_Dialog" parent="Theme.AppCompat.Light.DarkActionBar"> 
    <item name="android:windowMinWidthMajor">100%</item> 
    <item name="android:windowMinWidthMinor">100%</item> 
</style> 

我想要在鍵盤上方進行對話,但它會變得完整。由於

回答

1

我剛纔已經解決了它的表演對話前加入這一行

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

感謝