Jaydip Radadiya

Results 10 comments of Jaydip Radadiya

Hi whilu! Thank you for the quick response. Appreciate for the support custom drawable feature. May i know how can i set TAG view background programmatically as a png image,...

Hi @manish-poddar I have a set + icon instead of cross for that you need to make a png (according to your UI) and set as backroung like as :...

Hi @manish-poddar Have a look like this, I have used as ``` tagLayout.getTagView(i).setEnableCross(true); tagLayout.getTagView(i).setCrossColor(getResources().getColor(R.color.transparent)); tagLayout.getTagView(i).setTagTextColor(getResources().getColor(R.color.red)); tagLayout.getTagView(i).setBorderWidth(1); tagLayout.getTagView(i).setTagBorderColor(getResources().getColor(R.color.red)); tagLayout.getTagView(i).setTagBackgroundColor(getResources().getColor(R.color.transparent)); tagLayout.getTagView(i).setBackgroundDrawable(getResources().getDrawable(R.drawable.ic_tag_add)); ``` Handle Click event as well like this : ``` tagLayout.setOnTagClickListener(new...

> Just setAdapter() every time instead of notifyDataSetChange() . it solved my crash. Thank you @AmritpalSingh5 it working perfectly!!

And also you can use for range selection like this : ``` calendarView.setSelectionManager(new RangeSelectionManager(new OnDaySelectedListener() { @Override public void onDaySelected() { Log.e(" CALENDAR ", "========== setSelectionManager =========="); Log.e(" CALENDAR ",...

Hi You can set min & max date using this pull request changes, refer all the files change from here, [Look at this](https://github.com/ApplikeySolutions/CosmoCalendar/pull/36/files/7fcd627db3d7c8088ca9360cdcfae8f96ee1f302) Min date as a current date :...

Hi Also I am facing a same problem. is there any update? Thanks.

Thank you Matías Dumrauf! appreciate..

Hey! Have find the solution for PrGuard warning ? I am facing still. Warning:it.sephiroth.android.library.widget.OverScroller: can't find referenced method 'float sqrt(float)' in library class android.util.FloatMath

Thank you..!