Android(Java)プログラミングにこのコードを使用します。
public static MessageBoxResult showOk(
Context context, String title, String message, String okMessage)
{
okDialogResult = MessageBoxResult.Closed;
// make a handler that throws a runtime exception when a message is received
final Handler handler = new Handler()
{
@Override
public void handleMessage(Message mesg)
{
throw new RuntimeException();
}
};
AlertDialog.Builder alert = new AlertDialog.Builder(context);
alert.setTitle(title);
alert.setMessage(message);
alert.setPositiveButton(okMessage, new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int whichButton) {
okDialogResult = MessageBoxResult.Positive;
handler.sendMessage(handler.obtainMessage());
}
});
AlertDialog dialog = alert.show();
// align button to center
Button b = (Button) dialog.findViewById(Android.R.id.button1);
b.setGravity(Gravity.CENTER_HORIZONTAL);
// loop till a runtime exception is triggered.
try { Looper.loop(); }
catch(RuntimeException e2) {}
return okDialogResult;
}
私の問題は、ボタンを中央に配置する方法ですか?ご覧のとおり、Gravity.CENTER_HORIZONTAL
(.CENTER
)を使用してボタンをcnenterに揃えようとしましたが、何も変わりません。ボタンはほぼ正しい位置にあります。
これは私のために働いた:
final AlertDialog.Builder builder = new AlertDialog.Builder(getActivity(), R.style.AppCompatAlertDialogStyle);
builder.setCancelable(true);
builder.setTitle(title);
builder.setMessage(message);
builder.setPositiveButton("OK", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
}
});
final AlertDialog dialog = builder.create();
dialog.show(); //show() should be called before dialog.getButton().
final Button positiveButton = dialog.getButton(AlertDialog.BUTTON_POSITIVE);
LinearLayout.LayoutParams positiveButtonLL = (LinearLayout.LayoutParams) positiveButton.getLayoutParams();
positiveButtonLL.gravity = Gravity.CENTER;
positiveButton.setLayoutParams(positiveButtonLL);
Crtnのメソッドを使用しますが、LayoutParam's
重力を変更する代わりに、幅をViewGroup.LayoutParams.MATCH_PARENT;
に変更します
ポジティブボタンとネガティブボタンを同時に使用する場合(大および中央)、次のようなものを使用できます。
AlertDialog alertDialog = new AlertDialog.Builder(this).create();
alertDialog.setTitle("Title");
alertDialog.setMessage("Message");
alertDialog.setButton(AlertDialog.BUTTON_POSITIVE, "Yes",
new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
dialog.dismiss();
}
});
alertDialog.setButton(AlertDialog.BUTTON_NEGATIVE, "No",
new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
dialog.dismiss();
}
});
alertDialog.show();
Button btnPositive = alertDialog.getButton(AlertDialog.BUTTON_POSITIVE);
Button btnNegative = alertDialog.getButton(AlertDialog.BUTTON_NEGATIVE);
LinearLayout.LayoutParams layoutParams = (LinearLayout.LayoutParams) btnPositive.getLayoutParams();
layoutParams.weight = 10;
btnPositive.setLayoutParams(layoutParams);
btnNegative.setLayoutParams(layoutParams);
これが本当に効果的なものです。
3つのボタンの親(ニュートラル、正のveおよび負)は、LinearLayoutを拡張するButtonBarLayoutです。 LinearLayoutでビューを集中化するには、重量、幅、およびlayout_gravity(重力ではなく)が重要であり、これらのコードは完全に機能します。
LinearLayout.LayoutParams layoutParams = new LinearLayout.LayoutParams(LinearLayout.LayoutParams.MATCH_PARENT, LinearLayout.LayoutParams.WRAP_CONTENT); //create a new one
layoutParams.weight = 1.0 f;
layoutParams.gravity = Gravity.CENTER; //this is layout_gravity
alertDialog.getButton(AlertDialog.BUTTON_NEGATIVE).setLayoutParams(layoutParams);
Crtnの方法とScott Brownの修正を試してみましたが、どちらも私が好きな方法をレンダリングしませんでした。
crtnのソリューションは、ボタンの外観をまったく変更しませんでした(私はAndroid.R.style.Theme_Material_Light_Dialog
)およびScott Brownのソリューションにより、ポジティブボタンがダイアログの親のエッジを超えて拡張されました。
ために Theme_Material_Light_Dialog
ボタンは、2番目(インデックス1)の要素として空白のビューを使用してボタンを右に押すLinearLayout
サブクラス内に含まれています。
CrtnのようにButton
refを取得します。
AlertDialog dialog = bld.create();
dialog.show(); //show() MUST be called before dialog.getButton
Button positiveButton = dialog.getButton(AlertDialog.BUTTON_POSITIVE);
ただし、leftSpacerをView.GONEに設定し、親の重力をCENTER_HORIZONTALに設定します
LinearLayout parent = (LinearLayout) positiveButton.getParent();
parent.setGravity(Gravity.CENTER_HORIZONTAL);
View leftSpacer = parent.getChildAt(1);
leftSpacer.setVisibility(View.GONE);
これには、ダイアログのボタンのスタック動作を壊さないという利点があります。欠点は、内部レイアウトが変更されると破損するため、YMMVです。
サポートライブラリのAlertDialogを使用していると思います。
その場合は、インポートをAndroid.app.AlertDialogに置き換えてみてください。
つかいますAndroid.support.v7.app.AlertDialog
これは、正と負のボタンを中央に揃えます。
Android.app.AlertDialog
は、ボタンを上部に配置し、下部に16dpのスペースを残します。
LayoutParamsを使用して、ポジティブ、ネガティブ、ニュートラルボタンを設定し、ポジティブボタンとニュートラルボタンの両方を非表示にし、ニュートラルボタンがあるはずの場所(中央)にネガティブボタンを配置できます。
onCreateViewで:
dialog = builder.setNegativeButton(R.string.cancel, new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
}
})
.setPositiveButton(R.string.go_on, new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
}
})
.setNeutralButton(R.string.do_nothing, new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
}
})
.create();
onStart()で:
super.onStart();
final Button positiveButton = dialog.getButton(AlertDialog.BUTTON_POSITIVE);
positiveButton.setVisibility(View.INVISIBLE);
final Button neutralButton = dialog.getButton(AlertDialog.BUTTON_NEUTRAL);
neutralButton.setVisibility(View.INVISIBLE);
final Button negativeButton = dialog.getButton(AlertDialog.BUTTON_NEGATIVE);
negativeButton.setLayoutParams(neutralButton.getLayoutParams());