1. 程式人生 > >AlertDialog彈出鍵盤時不彈起的問題解決

AlertDialog彈出鍵盤時不彈起的問題解決

根據鍵盤問題彙總得知dialog的跟佈局應改為Scrollview

同時應使用adjustResize
因此增加一個style

 <style name="dialog_soft_input" parent="Theme.AppCompat.Light.Dialog.Alert">
        <item name="android:windowSoftInputMode">adjustResize</item>
</style>

建立dialog時使用

AlertDialog mBalancePasswordDialog = new AlertDialog.Builder(activity,R.style.dialog_soft_input).setView
                (balancePasswordDialogView).create();