获取对话框内的自定义view

不能直接用findViewById的方法,因为findViewById只能查找这个布局下面的Id,而自定义的对话框不在这个布局下面,所以要获取自定义的布局再用findViewById。

获取对话框内的自定义view
android.content.DialogInterface.OnClickListener ls = new android.content.DialogInterface.OnClickListener(){
LayoutInflater dialogInflater=LayoutInflater.from(OptionsToDo.this);
View layout = dialogInflater.inflate(R.layout.dialog_answer, null);
@Override
public void onClick(DialogInterface dialog, int which) {
// TODO Auto-generated method stub
EditText edit = (EditText) layout.findViewById(R.id.answer_edittext);

String ans = edit.getText().toString();

}
获取对话框内的自定义view

大概像这样

获取对话框内的自定义view

上一篇:【本地服务器】用nginx进行反向代理处理(windows)


下一篇:图的邻接表表示法 (非指针实现)