我对克劳顿有意见:

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直接添加到自定义视图中。

08-25 06:07