将事件侦听器添加到对话框的标题中

时间:2016-03-26 20:21:22

标签: android dialog

我有一个自定义对话框,如果可能的话,我想在标题上添加一个触控侦听器。

我可以使用自定义文本设置标题,但我不确定如何检索标题以实现此目的。

这可能吗?到目前为止,唯一可证明的代码是创建和设置对话框标题的代码。

   //Creating and setting the title of the dialog
   final Dialog dialog = new Dialog(activity);
   dialog.setTitle(title);

1 个答案:

答案 0 :(得分:0)

  

这可能吗?

是,

  

如何?

  • 为对话框标题添加自定义视图。
  • 将dialogInterface.OnClickListener设置为您添加为标题视图的视图。
  • 在onClick上做你想做的事。