AndroidShortcuts

来源:互联网 发布:足球关注分析软件 编辑:程序博客网 时间:2024/05/01 16:46

AndroidShortcuts

项目地址:pcevikogullari/AndroidShortcuts
简介:Example app for shortcuts in design library v25

Example app for shortcuts in design library v25

Demo

Demo 1 Demo 1

Manifest

Add meta-data before </activity> tag in Manifest.xml

<meta-data android:name="android.app.shortcuts"    android:resource="@xml/shortcuts" />

Add Shortcut

To add or edit a new shotcut, go to /res/xml/shortcuts.xml :

<shortcuts xmlns:android="http://schemas.android.com/apk/res/android">    <shortcut        android:shortcutId="shortcut1"        android:enabled="true"        android:icon="@drawable/ic_directions_run_black_24dp"        android:shortcutShortLabel="@string/shortcut1"        android:shortcutLongLabel="@string/shortcut1_long"        android:shortcutDisabledMessage="@string/shortcut1_disabled">        <intent            android:action="custom_action"            android:targetPackage="com.pamir.shortcuts"            android:targetClass="com.pamir.shortcuts.MainActivity" />    </shortcut></shortcuts>

Handle Actions

To handle shortcuts, just add new constant:

private final static String CUSTOM_ACTION = "custom_action";

and check the intent for custom action :

switch (getIntent().getAction()){            case CUSTOM_ACTION:                textView.setText(CUSTOM_ACTION);                break;            default:                break;        }
0 0
原创粉丝点击