flagyl buy online where to buy doxycycline hyclate
» Intent Android中文资讯网 - 关注Android,关注x25.cn
201008.26

Android 用Intent调用系统中经常被用到的组件

开发 夜雨 android, Intent 818 次阅读 发表于2010-08-26 12:07 没有评论

1 ,web浏览器

Uri uri= Uri. parse ( "http://kuikui.javaeye.com" );

returnIt =  new  Intent(Intent. ACTION_VIEW uri );

2,地图

Uri mapUri = Uri. parse ( "geo:38.899533,-77.036476" );

returnIt =  new  Intent(Intent. ACTION_VIEW , mapUri);

3,调拨打电话界面

Uri telUri = Uri. parse ( "tel:100861" );

returnIt =  new  Intent(Intent. ACTION_DIAL , telUri);

阅读剩余部分...