SwipeMenuListView
SwipeMenuListView copied to clipboard
smoothOpenMenu() not working?
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?
Use below code, it's working for me:
new Handler().postDelayed(new Runnable() {
@Override
public void run() {
lv.smoothOpenMenu(0);
}
}, 1000);