ICode9

精准搜索请尝试: 精确搜索
首页 > 其他分享> 文章详细

android – 动态设置自定义AlertDialog内容

2019-07-04 13:12:30  阅读:157  来源: 互联网

标签:android android-alertdialog


我有一个自定义对话框,我将其设置为一个函数:

public void customDialog(Bitmap bm, String title){
    TextView dialogtext = (TextView)findViewById(R.id.layout_root);
    //For above also tried r.id.popup which is the containing file for the layout
    ImageView dialogimage = (ImageView)findViewById(R.id.popupimage); 

    dialogtext.setText(title);
    dialogimage.setImageBitmap(bm);

    LayoutInflater inflater = getLayoutInflater();
    View layout = inflater.inflate(R.layout.popup, (ViewGroup) findViewById(R.id.layout_root));
    AlertDialog.Builder builder = new AlertDialog.Builder(this);
    builder.setView(layout);
    builder.show();
}

每当我尝试使用Null指针异常动态设置XML字段时,对话框都会失败.我很难过,有什么想法吗?我是否必须在清单中添加一些自定义对话框?

解决方法:

首先这样做:

View layout = inflater.inflate(R.layout.popup,(ViewGroup)findViewById(R.id.layout_root));

然后,在定义布局后,执行以下操作:

ImageView dialogimage =(ImageView)layout.findViewById(R.id.popupimage);

在您创建的新布局上调用findViewByID(),而不是在父内容视图上调用.

所以有两个变化:Ordering和layout.findView没有findView

标签:android,android-alertdialog
来源: https://codeday.me/bug/20190704/1377283.html

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有