强烈建议与 StatusBarUtil 结合着一起使用
保证栈底 Activity 的主题是不透明的。例如 demo 中的首个 Activity 是 SplashActivity ,进入主界面后 SplashActivity 就销毁了,此时 MainActivity 就是栈底 Activity ,需保证 MainActivity 的主题不透明
必须在 Application 的 onCreate 方法中执行 BGASwipeBackManager.getInstance().init(this) 来初始化滑动返回
android.Build.VERSION.SDK_INT
android.Build.MODEL
| | |
| | |
点击下载 BGASwipeBackLayoutDemo.apk 或扫描下面的二维码安装
bga-swipebacklayout 后面的「 latestVersion 」指的是左边这个 maven-central 徽章后面的「数字」,请自行替换。
dependencies {
compile 'cn.bingoogolapple:bga-swipebacklayout:latestVersion@aar'
// 换成己工程里依赖的 support-v4 的版本
compile 'com.android.support:support-v4:25.1.0'
}
public class App extends Application {
@Override
public void onCreate() {
super.onCreate();
// 必须在 Application 的 onCreate 方法中执行 BGASwipeBackManager.getInstance().init(this) 来初始化滑动返回
BGASwipeBackManager.getInstance().init(this);
}
}
<!-- 这里面的内容改成你自己项目里的 -->
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
<!--colorPrimaryDark 对应状态栏的颜色-->
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<!--colorPrimary 对应 ActionBar 的颜色-->
<item name="colorPrimary">@color/colorPrimary</item>
<!-- 底部导航栏的颜色 -->
<item name="android:navigationBarColor" tools:targetApi="lollipop">@color/navigationBarColor</item>
<item name="android:windowBackground">@color/windowBackground</item>
<!--colorAccent 对应 EditText 编辑时、 RadioButton 选中、 CheckBox 等选中时的颜色-->
<item name="colorAccent">@color/colorAccent</item>
</style>
<!-- 用于开启滑动返回功能的 Activity -->
<style name="AppTheme.Transparent">
<item name="android:windowBackground">@android:color/transparent</item>
<item name="android:windowIsTranslucent">true</item>
</style>
public abstract class BaseActivity extends AppCompatActivity implements BGASwipeBackHelper.Delegate, View.OnClickListener {
protected BGASwipeBackHelper mSwipeBackHelper;
protected Toolbar mToolbar;
@Override
protected void onCreate(@Nullable Bundle savedInstanceState) {
// 「必须在 Application 的 onCreate 方法中执行 BGASwipeBackManager.getInstance().init(this) 来初始化滑动返回」
// 在 super.onCreate(savedInstanceState) 之前调用该方法
initSwipeBackFinish();
super.onCreate(savedInstanceState);
}
/**
* 初始化滑动返回。在 super.onCreate(savedInstanceState) 之前调用该方法
*/
private void initSwipeBackFinish() {
mSwipeBackHelper = new BGASwipeBackHelper(this, this);
// 「必须在 Application 的 onCreate 方法中执行 BGASwipeBackManager.getInstance().init(this) 来初始化滑动返回」
// 下面几项可以不配置,这里只是为了讲述接口用法。
// 设置滑动返回是否可用。默认值为 true
mSwipeBackHelper.setSwipeBackEnable(true);
// 设置是否仅仅跟踪左侧边缘的滑动返回。默认值为 true
mSwipeBackHelper.setIsOnlyTrackingLeftEdge(true);
// 设置是否是微信滑动返回样式。默认值为 true
mSwipeBackHelper.setIsWeChatStyle(true);
// 设置阴影资源 id 。默认值为 R.drawable.bga_sbl_shadow
mSwipeBackHelper.setShadowResId(R.drawable.bga_sbl_shadow);
// 设置是否显示滑动返回的阴影效果。默认值为 true
mSwipeBackHelper.setIsNeedShowShadow(true);
// 设置阴影区域的透明度是否根据滑动的距离渐变。默认值为 true
mSwipeBackHelper.setIsShadowAlphaGradient(true);
}
/**
* 是否支持滑动返回。这里在父类中默认返回 true 来支持滑动返回,如果某个界面不想支持滑动返回则重写该方法返回 false 即可
*
* @return
*/
@Override
public boolean isSupportSwipeBack() {
return true;
}
/**
* 正在滑动返回
*
* @param slideOffset 从 0 到 1
*/
@Override
public void onSwipeBackLayoutSlide(float slideOffset) {
}
/**
* 没达到滑动返回的阈值,取消滑动返回动作,回到默认状态
*/
@Override
public void onSwipeBackLayoutCancel() {
}
/**
* 滑动返回执行完毕,销毁当前 Activity
*/
@Override
public void onSwipeBackLayoutExecuted() {
mSwipeBackHelper.swipeBackward();
}
}
Copyright (C) 2012 The Android Open Source Project
Copyright 2016 bingoogolapple
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
1
faywong8888 2017-01-13 08:24:57 +08:00 via iPhone
+1 ,看起来应该不错,有空试试
|
2
bingoogolapple OP @faywong8888 通过修改 support-v4 包中 SlidingPaneLayout 的源码来实现滑动返回布局,新增的代码全用
// ======================== 新加的 START ======================== 和 // ======================== 新加的 END ======================== 包裹起来的,建议研究下源码 |