Android滑动退出Activity的三方框架swipebacklayout

//在   build.gradle 依赖
compile 'me.imid.swipebacklayout.lib:library:1.0.0'


然后直接让你想滑动退出到的Activity去继承
SwipeBackActivity

Activity的默认背景颜色为黑色,所以滑动退出的时候是黑色,在style里面加一种风格
 
  
 
  
<style name="名称" parent="AppTheme">
    <item name="android:windowIsTranslucent">trueitem>
style>
 
  
然后再清单文件中配置该Activity的主题
 
  
<activity
    android:name="配置的Activity"
    android:theme="@style/名称" />

你可能感兴趣的:(Android滑动退出Activity的三方框架swipebacklayout)