ActivitySwitcher 是一个基于 Activity 视图操作管理库,可以实现 Activity 之间任意跳转、关闭任意一个 Activity 以及结束应用程序等功能。
本库中的展现 Activity 视图时,附带阴影的卡片效果抽取自 CrazyShadow 有兴趣的朋友可以移步看看。
欢迎大家给 ActivitySwitcher 提 Issues,有问题我会尽快修复
录制图像有丢帧的情况,所以预览图效果不够流畅,背景图显示的也有问题。
导入 aslibrary Module 作为依赖库, 或者直接复制 com.hitomi.aslibrary 中所有类文件到自己的项目中即可
ActivitySwitcher.getInstance().init(this);
@Override
public boolean dispatchTouchEvent(MotionEvent ev) {
activitySwitcher.processTouchEvent(ev);
return super.dispatchTouchEvent(ev);
}
如果不想通过手势打开 ActivitySwitcher,可以通过以下方式手动打开
activitySwitcher.showSwitcher();
@Override
public void onBackPressed() {
activitySwitcher.finishSwitch(this);
}
activitySwitcher.setOnActivitySwitchListener(new ActivitySwitcher.OnActivitySwitchListener() {
@Override
public void onSwitchStarted() {}
@Override
public void onSwitchFinished(Activity activity) {}
});
onSwitchStarted :在 ActivitySwitcher 打开后被回调
onSwitchFinished 在 ActivitySwitcher 关闭后被回调
全部示例代码详情请前往 MainActivity 查看
#Method
方法 | 说明 |
---|---|
getInstance | 获取 ActivitySwitcher 实例 (ActivitySwitcher 为单例) |
init | 全局初始化 ActivitySwitcher, 一般在 Application 的 onCreate 方法中调用 |
processTouchEvent | 用于需要手势打开 ActivitySwitcher 的场景, 一般在 BaseActivity 的 dispatchTouchEvent 方法中调用 |
showSwitch | 打开 ActivitySwitcher,切换到 Activity 卡片式管理界面 |
finishSwitch | 关闭 ActivitySwitcher, 退出 Activity 卡片式管理界面,回到选中或者默认的 Activity 界面 |
exit | 退出当前应用程序 |
setOnActivitySwitchListener | 设置监听器,监听 ActivitySwitcher 的打开和关闭 |
#Licence
Copyright 2016 Hitomis, Inc.
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.