我已经在我的Android应用中创建了一个带有EditText的AlertDialog,但默认的边距看起来真的很糟糕。我试图按如下方式指定边距:
android.support.v7.app.AlertDialog.Builder builder = new android.support.v7.app.AlertDialog.Builder(SpinActivity.this);
builder.setTitle("Edit Spin Tags");
builder.setMessage("(separate tags with commas)");
// set input
int margin = 10;
final EditText input = new EditText(SpinActivity.this);
input.setSingleLine();
input.setText(spinTags.toString().replace("[", "").replace("]", ""));
builder.setView(input, margin, 0, margin, 0);
但是,从下图中可以看出它没有应用所需的效果。
我尝试过的其他选项包括将输入放在LinearLayout中,并在将AlertDialog视图设置为LinearLayout之前使用LayoutParams设置边距。
如何在AlertDialog中设置EditText的边距?
答案 0 :(得分:9)
实际上你的解决方案工作得很好,只有builder.setView(input, margin, 0, margin, 0);
在“像素”值中接受参数。所以20的值非常小。要么使用更高的保证金价值,例如在100年代。或使用此功能将dp转换为像素
public static int dpToPx(int dp)
{
return (int) (dp * Resources.getSystem().getDisplayMetrics().density);
}
然后,
int margin = dpToPx(20);
答案 1 :(得分:4)
您可以LinearLayout
作为EditText
的父级。然后为EditText
提供保证金。
private void createDialog() {
AlertDialog.Builder builder = new AlertDialog.Builder(this);
builder.setTitle("Demo");
builder.setMessage("Some demo message");
LinearLayout parentLayout = new LinearLayout(this);
EditText editText = new EditText(this);
editText.setHint("Some text");
LinearLayout.LayoutParams layoutParams = new LinearLayout.LayoutParams(
LinearLayout.LayoutParams.MATCH_PARENT,
LinearLayout.LayoutParams.MATCH_PARENT);
// call the dimen resource having value in dp: 16dp
int left = getPixelValue((int)getResources().getDimension(R.dimen.activity_horizontal_margin));
int top = getPixelValue((int)getResources().getDimension(R.dimen.activity_horizontal_margin));
int right = getPixelValue((int)getResources().getDimension(R.dimen.activity_horizontal_margin));
int bottom = getPixelValue((int)getResources().getDimension(R.dimen.activity_horizontal_margin));
// this will set the margins
layoutParams.setMargins(left, top, right, bottom);
editText.setLayoutParams(layoutParams);
parentLayout.addView(editText);
builder.setView(parentLayout);
builder.setPositiveButton("OK", null);
builder.create().show();
}
private int getPixelValue(int dp) {
Resources resources = getResources();
return (int) TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP,
dp, resources.getDisplayMetrics());
}
有关详情,请访问http://www.pcsalt.com/android/set-margins-in-dp-programmatically-android/
答案 2 :(得分:0)
在不同的布局文件中定义Edittext,同时在该布局中设置适当的边距。给该布局充气,然后将其设置为对话框视图。