- 浏览: 6442 次
- 性别:
- 来自: 北京
最新评论
文章列表
(转)Android权限大全
- 博客分类:
- android
访问登记属性
android.permission.ACCESS_CHECKIN_PROPERTIES读取或写入登记check-in数据库属性表的权限
获取错略位置
android.permission.ACCESS_COARSE_LOCATION通过WiFi或移动基站的方式获取用户错略的经纬度信息定位精度大概误差在30~1500米
获取精确位置
android.permission.ACCESS_FINE_LOCATION通过GPS芯片接收卫星的定位信息定位精度达10米以内
访问定位额外命令
android.permission.ACCESS_LOCATI ...
在博客园看到一篇写的比较详细文章,转来分享下,也便于自己用到时查询
1 Intent.ACTION_MAIN
String: android.intent.action.MAIN
标识Activity为一个程序的开始。比较常用。
Input:nothing
Output:nothing
<activity android:name=".Main" android:label="@string/app_name">
<intent-filter>
<action android:name=& ...
不说废话,直接上代码,实现功能看标题
//获取adapter
ListAdapter listAdapter = listview.getAdapter();
if (listAdapter == null) {
return;
}
int totalHeight = 0;
for (int i = 0; i < listAdapter.getCount(); i++) {
View listItem = listAdapter.getView(i, null, li ...
public static Intent openFile(String filePath){
File file = new File(filePath);
if(!file.exists()) return null;
/* 取得扩展名 */
String end=file.getName().substring(file.getName().lastIndexOf(".") + 1,file.getName().length()).toLowerCase();
/* 依扩展名的类型决定MimeType */
if(end.equ ...