您当前的位置: 首页 >  android

AndroidShortcuts

发布时间:2016-11-01 09:16:55 ,浏览量:0

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  tag in Manifest.xml


			
				Add Shortcut
			
			

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


			
				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;
        }
关注
打赏
1688896170
查看更多评论

暂无认证

  • 0浏览

    0关注

    111043博文

    0收益

  • 0浏览

    0点赞

    0打赏

    0留言

私信
关注
热门博文
立即登录/注册

微信扫码登录

0.0676s