首页 > 其他 > 详细

获取对话框内的自定义view

时间:2014-02-01 13:40:50      阅读:486      评论:0      收藏:0      [点我收藏+]

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

bubuko.com,布布扣
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();

}
bubuko.com,布布扣

大概像这样

获取对话框内的自定义view

原文:http://www.cnblogs.com/ggaaooppeennngg/p/3536906.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!