图片:http://f.anyhub.net/2eKL
我想在TextVIEw上显示“每个应用程序的应用程序权限详细信息”.
但我试试但不行吗?
============= Hello.java ===========
import androID.app.Activity;import androID.os.Bundle;import androID.vIEw.VIEw;import androID.Widget.button;import androID.Widget.ListVIEw;import androID.content.Intent;import androID.content.Context;import androID.content.pm.*;import androID.Widget.TextVIEw;import java.util.*;public class HelloSakez extends Activity {/** Called when the activity is first created. */@OverrIDepublic voID onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);setContentVIEw(R.layout.main);final Intent mainIntent = new Intent(Intent.ACTION_MAIN,null);mainIntent.addcategory(Intent.category_LAUNCHER);final ListVIEw lw = (ListVIEw) findVIEwByID(R.ID.ListVIEw1);final List<ResolveInfo> pkgList = lw.getContext().getPackageManager().queryIntentActivitIEs(mainIntent,0);final TextVIEw tw = (TextVIEw) findVIEwByID(R.ID.textVIEw1);Iterator it = pkgList.iterator();while(it.hasNext()){ResolveInfo rf = (ResolveInfo)it.next();tw.append(rf.toString());}}}
============ main.xml ========================
<?xml version="1.0" enCoding="utf-8"?><linearLayout xmlns:androID="http://schemas.androID.com/apk/res/androID"androID:orIEntation="vertical"androID:layout_wIDth="fill_parent"androID:layout_height="fill_parent"><button androID:text="button" androID:ID="@+ID/button1" androID:layout_wIDth="wrap_content" androID:layout_height="wrap_content"></button><ListVIEw androID:ID="@+ID/ListVIEw1" androID:layout_height="wrap_content" androID:layout_wIDth="fill_parent"></ListVIEw><TextVIEw androID:text="TextVIEw" androID:ID="@+ID/textVIEw1" androID:layout_wIDth="wrap_content" androID:layout_height="wrap_content"></TextVIEw></linearLayout>
=========================================
解决方法 您需要使用PackageManager的 GET_PERMISSIONS标志.检查this question.
总结以上是内存溢出为你收集整理的如何获得每个应用程序的应用程序权限?如何在Android上以编程方式执行此 *** 作?全部内容,希望文章能够帮你解决如何获得每个应用程序的应用程序权限?如何在Android上以编程方式执行此 *** 作?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)