我有一个列出所有已安装应用程序的ListApp活动,我在这里尝试做的是当用户从列表中选择一个应用程序时它应该获得有关所选应用程序的意图/信息,现在当用户单击时button1,它应该打开之前选择的应用程序(在之前检索的意图的帮助下)。
ListApp活动:
@Override
public void onClick(View arg0) {
// TODO Auto-generated method stub
switch (arg0.getId()){
case R.id.button1:
//startActivity(app.intent);
//should start app with the help of info received by selecting app from the list
break;
}
@Override
public void onItemClick(AdapterView<?> parent, View v, int position, long id) {
//ApplicationInfo app = (ApplicationInfo) parent.getItemAtPosition(position);
//startActivity(app.intent);
//instead of launching app, I would like to get the info about the selected app & use it(start app) when clicking button1
}
ApplicationInfo
class ApplicationInfo {
CharSequence title;
Intent intent;
Drawable icon;
boolean filtered;
final void setActivity(ComponentName className, int launchFlags) {
intent = new Intent(Intent.ACTION_MAIN);
intent.addCategory(Intent.CATEGORY_LAUNCHER);
intent.setComponent(className);
intent.setFlags(launchFlags);
}
}
谢谢大家:)
答案 0 :(得分:0)
如果您知道应用程序的包名称,请从列表中的索引获取活动信息。
List<ResolveInfo> rInfo = getPackageManager().queryIntentActivities(new Intent(Intent.ACTION_MAIN),MATCH_DEFAULT_ONLY);
for(ResolveInfo resolveInfo:rInfo){
if(resolveInfo.activityInfo.packageName.equals("package")){
设置组件
ComponentName chosenName = new ComponentName(
resolveInfo.activityInfo.packageName,
resolveInfo.activityInfo.name);
break;
}
}
final Intent intent = new Intent(Intent.ACTION_MAIN, null);
intent.addCategory(Intent.CATEGORY_LAUNCHER);
intent.setComponent(chosenName);
startActivity(intent);
如上设置组件。
public ComponentName(String pkg,String cls)
在API级别1中添加创建新的组件标识符。
参数pkg组件所在的包的名称。 不能为空。 cls pkg里面的类的名称 实现组件。不能为空。