Tooltip doesnt close when clicking on it
danvinokour opened this issue · 3 comments
Please add support for closing the tooltip dialog when it is clicked.
Thanks.
@danvinokour
Hi,Thanks for using EasyDialog,I think you should handle it by yourself,I mean setOnClickListener on the View of the tooltip.For example :
View view = this.getLayoutInflater().inflate(R.layout.layout_tip_content_horizontal, null);
view.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { //TODO EasyDialog.dismiss(); } });
Hi,
Thank you for creating this awesome tool :)
I sure can handle it by myself but i think that it would be better if the library gave me this capability for better code encapsulation.
I think it supposed to be handled by your library...
@danvinokour ok,good advice,I will add it next version.