0

以前にStackoverflowとGoogleで検索しましたが、使用時にエラーが発生したり、特定のコード/パーツが欠落している、または追加のライブラリをインストールする必要がある可能性があるため、うまくいく答えが見つかりませんでしたファイル。

つまり、基本的に私がやりたいのは、Androidスマートフォンにインストールされているすべてのアプリを取得して表示することですが、それを実行する方法についてはわかりません。私は通常、「コンテキスト」変数に関してエラーが発生するか、xmlファイルが何らかの方法で.javaファイルと一致しません。

すべてのAndroidアプリを取得するという目的を達成するために、必要なすべてのファイル(xml、java、マニフェスト、ドローアブル、レイアウトなど)のソースコードを教えてくれる人はいますか?助けていただければ幸いです

4

2 に答える 2

0
public class AppList extends Activity {
 private ListView lView;
 private ArrayList results = new ArrayList();

 @Override
 public void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
  setContentView(R.layout.main);
  lView = (ListView) findViewById(R.id.list1);
  PackageManager pm = this.getPackageManager();

  Intent intent = new Intent(Intent.ACTION_MAIN, null);
  intent.addCategory(Intent.CATEGORY_LAUNCHER);

  List<ResolveInfo>  list = pm.queryIntentActivities(intent, PackageManager.PERMISSION_GRANTED);
  for (ResolveInfo rInfo : list) {
   results.add(rInfo.activityInfo.applicationInfo
     .loadLabel(pm).toString());
   Log.w("Installed Applications", rInfo.activityInfo.applicationInfo
     .loadLabel(pm).toString());
  } 
  lView.setAdapter(new ArrayAdapter(this, android.R.layout.simple_list_item_1, results));
    }
}
于 2013-01-14T11:19:11.703 に答える
0

まず、次のように main.xml ファイルを作成します。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >

            <ListView
                android:id="@+id/list1"
                android:layout_width="match_parent"
                android:layout_height="wrap_content" >
            </ListView>

</LinearLayout>

これlistは、インストールされたアプリケーションを設定するために使用されます。

次に、Activity クラスを作成して、インストールされているアプリケーションを取得します。

public class AppList extends Activity {
    private ListView lView;
    private ArrayList results;
    List<ResolveInfo> list;
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
            results = new ArrayList();
        lView = (ListView) findViewById(R.id.list1);
        PackageManager pm = this.getPackageManager();

        Intent intent = new Intent(Intent.ACTION_MAIN, null);
        intent.addCategory(Intent.CATEGORY_LAUNCHER);

        list = pm.queryIntentActivities(intent,
            PackageManager.PERMISSION_GRANTED);
        for (ResolveInfo rInfo : list) {
            results.add(rInfo.activityInfo.applicationInfo.loadLabel(pm)
                    .toString());
            Log.w("Installed Applications", rInfo.activityInfo.applicationInfo
                    .loadLabel(pm).toString());
        }
        lView.setAdapter(new ArrayAdapter(this,
                android.R.layout.simple_list_item_1, results));
    }
}

編集- リストからアプリケーションを開く場合は、一度クリックします。ListView の onItemClick メソッドをオーバーライドする必要があり、そのメソッドで、選択したアプリケーションを開くインテントを渡す必要があります。

こちらをご覧ください。

これらはおそらくあなたの問題を解決します。

于 2013-01-14T11:58:43.807 に答える