5
我正在尋找一種方法來調整AlertDialog
內的EditText
的大小(所以它不會觸及邊緣)。調整AlertDialog中EditText的大小
我的示例代碼
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();
我試過沒有成功此處提供的解決方案:
謝謝你花時間,這有助於把正確的地方放在正確的地方。 – ThePaul 2012-02-19 01:39:21