0

インストールされているすべてのアプリをスクロールビューに表示し、アイコンを左側に表示するダイアログを作成するにはどうすればよいですか?

Dialog d = new Dialog(context);
LayoutInflater l = context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View v = l.inflate(R.layout.my_list_dialog_layout, null, false);
d.setContentView(v);
d.show();

このようなものは静的レイアウトで機能しますが、インストールされているすべてのアプリをプログラムで (実行時に) リストを作成するにはどうすればよいですか?

""""""" アップデート """""""

一部の人々は私が望むものを手に入れませんでしたので、ここでさらに説明します:
インストールされているすべてのパッケージを取得する方法を知りたくない実行時にダイアログでリストビューを作成する方法を
知りたい? 質問が不正確で申し訳ありません...

4

1 に答える 1

4

次のコードを確認してください。

class AppInfo {
    private String appname = "";
    private String pname = "";
    private String versionName = "";
    private int versionCode = 0;
    private Drawable icon;
    private void prettyPrint() {
        Log.v(appname + "\t" + pname + "\t" + versionName + "\t" + versionCode);
    }
}

private ArrayList<AppInfo> getPackages() {
    // false = no system packages
    ArrayList<AppInfo> apps = getInstalledApps(false); 

    final int max = apps.size();
    for (int i=0; i<max; i++) {
        apps.get(i).prettyPrint();
    }
    return apps;
}

private ArrayList<AppInfo> getInstalledApps(boolean getSysPackages) {
    ArrayList<AppInfo> res = new ArrayList<AppInfo>();        
    List<PackageInfo> packs = getPackageManager().getInstalledPackages(0);
    for(int i=0;i<packs.size();i++) {
        PackageInfo p = packs.get(i);
        if ((!getSysPackages) && (p.versionName == null)) {
            continue ;
        }
        AppInfo newInfo = new AppInfo();
        newInfo.appname = p.applicationInfo.loadLabel(getPackageManager()).toString();
        newInfo.pname = p.packageName;
        newInfo.versionName = p.versionName;
        newInfo.versionCode = p.versionCode;
        newInfo.icon = p.applicationInfo.loadIcon(getPackageManager());
        res.add(newInfo);
    }
    return res; 
}

ダイアログコード:-

Dialog d = new Dialog(context);
LayoutInflater l = context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View v = l.inflate(R.layout.my_list_dialog_layout, null, false);
ListView mApplicationList = (ListView) v.findViewById(R.id.list);
ArrayList<AppInfo> apps = getPackages();
ApplicationAdapter listadaptor = new ApplicationAdapter(AllAppsActivity.this,
                R.layout.snippet_list_row, apps);
setListAdapter(listadaptor);
d.setContentView(v);
d.show();

アダプターコード:-

public class ApplicationAdapter extends ArrayAdapter<ApplicationInfo> {
private List<ApplicationInfo> appsList = null;
private Context context;
private PackageManager packageManager;

public ApplicationAdapter(Context context, int textViewResourceId,
        List<ApplicationInfo> appsList) {
    super(context, textViewResourceId, appsList);
    this.context = context;
    this.appsList = appsList;
    packageManager = context.getPackageManager();
}

@Override
public int getCount() {
    return ((null != appsList) ? appsList.size() : 0);
}

@Override
public ApplicationInfo getItem(int position) {
    return ((null != appsList) ? appsList.get(position) : null);
}

@Override
public long getItemId(int position) {
    return position;
}

@Override
public View getView(int position, View convertView, ViewGroup parent) {
    View view = convertView;
    if (null == view) {
        LayoutInflater layoutInflater = (LayoutInflater) context
                .getSystemService(Context.LAYOUT_INFLATER_SERVICE);
        view = layoutInflater.inflate(R.layout.snippet_list_row, null);
    }

    ApplicationInfo data = appsList.get(position);
    if (null != data) {
        TextView appName = (TextView) view.findViewById(R.id.app_name);
        TextView packageName = (TextView) view.findViewById(R.id.app_paackage);
        ImageView iconview = (ImageView) view.findViewById(R.id.app_icon);

        appName.setText(data.loadLabel(packageManager));
        packageName.setText(data.packageName);
        iconview.setImageDrawable(data.loadIcon(packageManager));
    }
    return view;
}
};

- 別のサンプル リンク

于 2013-10-28T11:46:26.320 に答える