SwipeMenuListView icon indicating copy to clipboard operation
SwipeMenuListView copied to clipboard

smoothOpenMenu() not working?

Open scottsmithdev opened this issue 9 years ago • 1 comments

Am I mistaken, or does the smoothOpenMenu() method not work? When my list and my fragment finish loading, I simply want to use smoothOpenMenu() and after a short delay use smoothCloseMenu(), so as to provide a visual hint to the user about the swipe functionality. However, when I tried, even when just using smoothOpenMenu(), it does not work. Is this an actual issue?

scottsmithdev avatar Mar 18 '16 17:03 scottsmithdev

Use below code, it's working for me:

new Handler().postDelayed(new Runnable() {
                        @Override
                        public void run() {
                            lv.smoothOpenMenu(0);
                        }
                    }, 1000);

AhmadVatani avatar Apr 18 '17 06:04 AhmadVatani