
android
iteye_15276
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
备用资源目录
mccAAA:AAA是移动设备国家代码 mncAAA:AAA是运营商/网络代码 en-rUS:语言和区域 small、normal、large、xlarge:屏幕大小 long、notlong:屏幕类型 port、land:纵向或横向 car、desk:扩展坞类型 night、notnight:晚上、白天 ldpi、mdpi、hdpi、xhdpi、nodpi:屏幕像素密度 no...原创 2014-09-26 16:09:59 · 163 阅读 · 0 评论 -
Android Intent调用大全、系统自带Intent调用大全
1.从google搜索内容 Intent intent = new Intent(); intent.setAction(Intent.ACTION_WEB_SEARCH); intent.putExtra(SearchManager.QUERY,"searchString") startActivity(intent); 2.浏览网页 Uri uri = Uri.parse("http://w...原创 2014-10-08 15:55:35 · 120 阅读 · 0 评论 -
android intent和intent action大全
1.Intent的用法: (1)用Action跳转 1、使用Action跳转,如果有一个程序的AndroidManifest.xml中的某一个 Activity的IntentFilter段中 定义了包含了相同的Action那么这个Intent就与这个目标Action匹配。如果这个IntentFilter段中没有定义 Type,Category,那么这个 Activity就匹配了。...原创 2014-10-22 11:42:37 · 144 阅读 · 0 评论