带有自定义视图的Crouton:未调用onClickListener

带有自定义视图的Crouton:未调用onClickListener,第1张

概述我有面包丁的问题:customView=LayoutInflater.from(context).inflate(viewId,null);if(customView!=null){TextViewtitle=(TextView)customView.findViewById(R.id.crouton_title);if(title!=null){title.setText(titleString);}Tex

我有面包丁的问题:

customVIEw = LayoutInflater.from(context).inflate(vIEwID, null);if (customVIEw != null) {    TextVIEw Title = (TextVIEw) customVIEw.findVIEwByID(R.ID.crouton_Title);    if (Title != null) {        Title.setText(TitleString);    }    TextVIEw message = (TextVIEw) customVIEw.findVIEwByID(R.ID.crouton_message);    if (message != null) {        message.setText(messageString);    }}final Crouton crouton = Crouton.make((Activity) context, customVIEw);crouton.setonClickListener(new VIEw.OnClickListener() {    @OverrIDe    public voID onClick(VIEw v) {        Crouton.hIDe(crouton);    }});

如果我向make方法提供customVIEw,则永远不会调用onClickListener.如果我使用makeText,它将起作用.难道我做错了什么?

解决方法:

尚不支持将OnClickListener添加到自定义视图.
处理自定义视图Crouton中的单击事件的最简单方法是将OnClickListener直接添加到自定义视图.

总结

以上是内存溢出为你收集整理的带有自定义视图的Crouton:未调用onClickListener全部内容,希望文章能够帮你解决带有自定义视图的Crouton:未调用onClickListener所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1075683.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-26
下一篇 2022-05-26

发表评论

登录后才能评论

评论列表(0条)

保存