All Projects → Hitomis → Activityswitcher

Hitomis / Activityswitcher

ActivitySwitcher is based on the Activity view operation management library, you can achieve any jump between Activity, close any Activity and end applications and other functions.

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Activityswitcher

ktx
简化Android开发的Kotlin库
Stars: ✭ 39 (-96.21%)
Mutual labels:  manager, activity
Bitcoin Node Manager
📊 Lightweight dashboard and control system for bitcoin nodes
Stars: ✭ 43 (-95.83%)
Mutual labels:  manager
Ajour
A World of Warcraft addon manager written in Rust.
Stars: ✭ 803 (-22.04%)
Mutual labels:  manager
Fcfilemanager
iOS File Manager on top of NSFileManager for simplifying files management. 📂
Stars: ✭ 862 (-16.31%)
Mutual labels:  manager
Spinmenu
轮盘样式的 Fragment 选择菜单,可转动轮盘切换 Fragment
Stars: ✭ 903 (-12.33%)
Mutual labels:  manager
Gtm In Viewport Manager
A manager of in-viewport events for GTM (Google Tag Manager).
Stars: ✭ 20 (-98.06%)
Mutual labels:  manager
Android Dragdismissactivity
A smooth, easy-to-implement, drag to dismiss Android Activity.
Stars: ✭ 682 (-33.79%)
Mutual labels:  activity
Serina
GUI for create translation files for i18next
Stars: ✭ 45 (-95.63%)
Mutual labels:  manager
Firedm
python open source (Internet Download Manager) with multi-connections, high speed engine, based on python, LibCurl, and youtube_dl https://github.com/firedm/FireDM
Stars: ✭ 977 (-5.15%)
Mutual labels:  manager
Modelassistant
Elegant library to manage the interactions between view and model in Swift
Stars: ✭ 26 (-97.48%)
Mutual labels:  manager
Core Update Manager
A Performant Update Manager for Unity
Stars: ✭ 25 (-97.57%)
Mutual labels:  manager
Code Notes
A simple code snippet & gist manager for developers built with Electron & Vue.js 🚀
Stars: ✭ 919 (-10.78%)
Mutual labels:  manager
Blog Post Workflow
Show your latest blog posts from any sources or StackOverflow activity or Youtube Videos on your GitHub profile/project readme automatically using the RSS feed
Stars: ✭ 910 (-11.65%)
Mutual labels:  activity
Skpm
💎📦 A utility to build and publish Sketch plugins
Stars: ✭ 890 (-13.59%)
Mutual labels:  manager
Activity
A PHP API to log anything anywhere
Stars: ✭ 44 (-95.73%)
Mutual labels:  activity
Galaxybudsclient
Unofficial Galaxy Buds Client for Windows
Stars: ✭ 733 (-28.83%)
Mutual labels:  manager
Realtime Android
数据驱动视图开发在 Android 平台的实现
Stars: ✭ 23 (-97.77%)
Mutual labels:  activity
Librecms
Free Open Source Content Management System, based on PHP, Bootstrap and jQuery.
Stars: ✭ 12 (-98.83%)
Mutual labels:  manager
Viewtooltip
A fluent tooltip for Android
Stars: ✭ 1,029 (-0.1%)
Mutual labels:  activity
Spm
A process manager similar to systemd and foreman with stop feature, written in Go.
Stars: ✭ 44 (-95.73%)
Mutual labels:  manager

ActivitySwitcher

Android Arsenal

ActivitySwitcher 是一个基于 Activity 视图操作管理库,可以实现 Activity 之间任意跳转、关闭任意一个 Activity 以及结束应用程序等功能。

本库中的展现 Activity 视图时,附带阴影的卡片效果抽取自 CrazyShadow 有兴趣的朋友可以移步看看。

欢迎大家给 ActivitySwitcher 提 Issues,有问题我会尽快修复

Preview

录制图像有丢帧的情况,所以预览图效果不够流畅,背景图显示的也有问题。

Sample

demo.apk

Import

导入 aslibrary Module 作为依赖库, 或者直接复制 com.hitomi.aslibrary 中所有类文件到自己的项目中即可

Usage

1、Application 中 初始化

ActivitySwitcher.getInstance().init(this);

2、在 Activity 中重写 dispatchTouchEvent 处理事件分发。最好直接在 BaseActivity 中处理。万事大吉

@Override
public boolean dispatchTouchEvent(MotionEvent ev) {
    activitySwitcher.processTouchEvent(ev);
    return super.dispatchTouchEvent(ev);
}

如果不想通过手势打开 ActivitySwitcher,可以通过以下方式手动打开

   activitySwitcher.showSwitcher();

3、Android 手机默认按下返回键就回 finish 掉当前 Activity,这与本库冲突,所以需要重写 onBackPressed 方法,同样最好在 BaseActivity 中去重写

@Override
public void onBackPressed() {
    activitySwitcher.finishSwitch(this);
}

4、如果希望监听 ActivitySwitcher 当前的行为状态,可以添加以下代码

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.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].