ikew0ng / SwipeBackLayout

An Android library that help you to build app with swipe back gesture.
Apache License 2.0
6.13k stars 1.41k forks source link

Does this lib support ActionBarActivity? #44

Open pkliang opened 9 years ago

ikew0ng commented 9 years ago

Only support native and sherlock ActionBar until now.

yrom commented 9 years ago

Implement your own SwipeBackActivity is very simple:

class MySwipeBackActivity extends ActionBarActivity implements SwipeBackActivityBase {
  private SwipeBackActivityHelper mHelper;
  //... simply copy the other codes from SwipeBackActivity.java
}

or you can see this one https://github.com/yrom/AcFun-Area63/blob/master/src/tv/acfun/a63/swipe/SwipeAppcompatActivity.java