相关疑难解决方法(0)

调整AlertDialog内的EditText的大小

我正在寻找一种方式来调整(所以它不会触及边缘)的EditText的内部AlertDialog.

在此输入图像描述

我的示例代码

AlertDialog.Builder alert = new AlertDialog.Builder(myActivity.this);

alert.setTitle("Test");

EditText textBox = new EditText(myActivity.this);
alert.setView(textBox);

alert.setPositiveButton("OK", new DialogInterface.OnClickListener() {
    public void onClick(DialogInterface dialog, int whichButton) {
    // do nothing 
    }
});

alert.setNegativeButton("Cancel", new DialogInterface.OnClickListener() {
    public void onClick(DialogInterface dialog, int whichButton) {
// do nothing
}
});

alert.show();
Run Code Online (Sandbox Code Playgroud)

我试过这里提供的解决方案没有成功:

android android-layout

5
推荐指数
1
解决办法
4098
查看次数

标签 统计

android ×1

android-layout ×1