EditText
개체로 경고 대화 상자를 만들려고 합니다. EditText
프로그래밍 방식으로 초기 텍스트를 설정해야합니다 . 여기 내가 가지고있는 것입니다.
AlertDialog.Builder dialogBuilder = new AlertDialog.Builder(this);
// ...Irrelevant code for customizing the buttons and title
AlertDialog alertDialog = dialogBuilder.create();
LayoutInflater inflater = this.getLayoutInflater();
alertDialog.setContentView(inflater.inflate(R.layout.alert_label_editor, null));
EditText editText = (EditText) findViewById(R.id.label_field);
editText.setText("test label");
alertDialog.show();
유효한 EditText
개체를 갖기 위해 무엇을 변경해야 합니까?
[편집하다]
그래서 user370305와 다른 사람들이 내가 사용해야 할 것을 지적했습니다. alertDialog.findViewById(R.id.label_field);
불행히도 여기에 또 다른 문제가 있습니다. 분명히 콘텐츠보기를 설정하면 AlertDialog
프로그램이 런타임에 충돌합니다. 빌더에서 설정해야합니다.
AlertDialog.Builder dialogBuilder = new AlertDialog.Builder(this);
// ...Irrelevant code for customizing the buttons and title
dialogBuilder.setView(inflater.inflate(R.layout.alert_label_editor, null));
AlertDialog alertDialog = dialogBuilder.create();
LayoutInflater inflater = this.getLayoutInflater();
EditText editText = (EditText) alertDialog.findViewById(R.id.label_field);
editText.setText("test label");
alertDialog.show();
안타깝게도 이렇게하면 alertDialog.findViewById(R.id.label_field);
이제를 반환합니다 null
.
[/편집하다]
답변
editText
alertDialog
레이아웃 의 일부 이므로 editText
참조하여 액세스 하십시오.alertDialog
EditText editText = (EditText) alertDialog.findViewById(R.id.label_field);
최신 정보:
코드 라인에서 dialogBuilder.setView(inflater.inflate(R.layout.alert_label_editor, null));
inflater
이다 널은 .
아래와 같이 코드를 업데이트하고 각 코드 줄을 이해하십시오.
AlertDialog.Builder dialogBuilder = new AlertDialog.Builder(this);
// ...Irrelevant code for customizing the buttons and title
LayoutInflater inflater = this.getLayoutInflater();
View dialogView = inflater.inflate(R.layout.alert_label_editor, null);
dialogBuilder.setView(dialogView);
EditText editText = (EditText) dialogView.findViewById(R.id.label_field);
editText.setText("test label");
AlertDialog alertDialog = dialogBuilder.create();
alertDialog.show();
업데이트 2 :
Inflater에서 생성 한 View 객체를 사용하여 UI 구성 요소를 업데이트하므로 API 21 이상에서 사용할 수있는 클래스 setView(int layourResId)
메서드를 직접 사용할 수 있습니다 AlertDialog.Builder
.
답변
이것을 사용하십시오
AlertDialog.Builder builder = new AlertDialog.Builder(activity);
// Get the layout inflater
LayoutInflater inflater = (activity).getLayoutInflater();
// Inflate and set the layout for the dialog
// Pass null as the parent view because its going in the
// dialog layout
builder.setTitle(title);
builder.setCancelable(false);
builder.setIcon(R.drawable.galleryalart);
builder.setView(inflater.inflate(R.layout.dialogue, null))
// Add action buttons
.setPositiveButton("OK", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int id) {
}
}
});
builder.create();
builder.show();
답변
당신은 쓸 수 있습니다:
AlertDialog.Builder dialogBuilder = new AlertDialog.Builder(this);
// ...Irrelevant code for customizing the buttons and title
LayoutInflater inflater = this.getLayoutInflater();
View dialogView= inflater.inflate(R.layout.alert_label_editor, null);
dialogBuilder.setView(dialogView);
Button button = (Button)dialogView.findViewById(R.id.btnName);
button.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
//Commond here......
}
});
EditText editText = (EditText)
dialogView.findViewById(R.id.label_field);
editText.setText("test label");
dialogBuilder.create().show();
답변
누군가 Kotlin에서 원하는 경우 :
val dialogBuilder = AlertDialog.Builder(this)
// ...Irrelevant code for customizing the buttons and title
val dialogView = layoutInflater.inflate(R.layout.alert_label_editor, null)
dialogBuilder.setView(dialogView)
val editText = dialogView.findViewById(R.id.label_field)
editText.setText("test label")
val alertDialog = dialogBuilder.create()
alertDialog.show()
재 게시 user370305의 @ 답.
답변
이것을 변경하십시오 :
EditText editText = (EditText) findViewById(R.id.label_field);
이에:
EditText editText = (EditText) v.findViewById(R.id.label_field);
답변
View v=inflater.inflate(R.layout.alert_label_editor, null);
alertDialog.setContentView(v);
EditText editText = (EditText)v.findViewById(R.id.label_field);
editText.setText("test label");
alertDialog.show();
답변
/**
* Shows confirmation dialog about signing in.
*/
private void startAuthDialog() {
AlertDialog.Builder dialogBuilder = new AlertDialog.Builder(this);
AlertDialog alertDialog = dialogBuilder.create();
alertDialog.show();
alertDialog.getWindow().setLayout(800, 1400);
LayoutInflater inflater = this.getLayoutInflater();
View dialogView = inflater.inflate(R.layout.auth_dialog, null);
alertDialog.getWindow().setContentView(dialogView);
EditText editText = (EditText) dialogView.findViewById(R.id.label_field);
editText.setText("test label");
}