AlertDialogとカスタムコンテンツ/ビューに問題があります。 AlertDialogはソフトキーボードを開いたときにサイズ変更されません。次のスクリーンショットは、私が達成したいものを私の問題であり、どのような最高のショー:&は行動を望んでいた(左)カスタムビューのAlertDialogが「サイズ変更」されません
現在の行動を(右)
私はといくつかの他のスレッドが知っていますSO上で同様の問題。残念ながら、提供されたソリューションのどれも私のために働いていませんでした。私のサンプルコードを次に示します。
XML
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >
<EditText
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
</EditText>
</LinearLayout>
</ScrollView>
のJava - CustomAlertDialog.class
public class CustomAlertDialog extends AlertDialog{
private Context context;
public CustomAlertDialog(Context context) {
super(context);
this.context = context;
}
public void buildDialog(){
LayoutInflater inflater = getLayoutInflater();
View layout = inflater.inflate(R.layout.dialog_content, null);
builder = new AlertDialog.Builder(context);
builder.setTitle("EditText");
builder.setView(layout);
builder.setPositiveButton("Ok", new OnClickListener() {
@Override
public void onClick(DialogInterface arg0, int arg1) {
dismiss();
}
});
builder.create();
}
public void showDialog(){
builder.show();
}
}
上記の私のMain.javaクラスで、ボタンを押すで呼び出されるクラス/機能
btnAlertDialog.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View arg0) {
CustomAlertDialog dialog = new CustomAlertDialog(Main.this);
dialog.buildDialog();
dialog.getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE);
dialog.showDialog();
}
});
私は以下のことを試しました:
このandroid:scrollbars="vertical"
android:scrollbarAlwaysDrawVerticalTrack="true"
結果と同様のLinearLayoutに
追加スクロールバー:
dialog.getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE);
結果:何も変更
特注を適用すると何がダイアログのためのフラグを設定
を変更しましたAlertDialogへのスタイル:<style name="AlertDialog" parent="@android:style/Theme.Holo.Light">
<item name="android:windowFullscreen">false</item>
</style>
のJava
builder = new AlertDialog.Builder(context, R.style.AlertDialog);
これが働いていました。残念ながら、それはあなたが、私は日のために、この問題で苦労してきたので、私は任意の助けに感謝次のスクリーンショット
で見ることができますいくつかの問題を作り出しました。ありがとう!
ソリューション
私は今、私のCustomAlertDialog.class
でダイアログを作成するには、以下の方法を使用しています。それが以前にはうまくいかなかった理由の詳細については、nandeeshの答えの下の私のコメントを参照してください。
public void startDialog(){
LayoutInflater inflater = getLayoutInflater();
View layout = inflater.inflate(R.layout.dialog_content, null);
builder = new AlertDialog.Builder(context);
builder.setTitle("EditText");
builder.setView(layout);
builder.setPositiveButton("Ok", new OnClickListener() {
@Override
public void onClick(DialogInterface arg0, int arg1) {
dismiss();
}
});
AlertDialog aDialog = builder.create();
aDialog.getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE);
aDialog.show();
}
使用レイアウトの重みを投稿行う場所を確認していません。マッチしない親 – Doomsknight
match_parentは幅に対して完全に問題ありません。さらに、1つのLinearLayoutにウェイトを与えることはできません。 – reVerse
基本的にボタンは表示されません。これは、ダイアログボックスのカスタム表示を使用しているためです。そしてあなたがそれを与えた後、ボタンが示した特定のテーマ。ダイアログにカスタムビューを作成した場合は、カスタムボタンも使用します。 – k0sh