美文网首页
启动任意程序的界面

启动任意程序的界面

作者: 2eb56199844d | 来源:发表于2017-04-21 15:46 被阅读10次
    String pakName = "com.example.fewwind.chaozhuofirst";
    public  void launchApp(Context context, String pkgName) {
        try {
            //Intent intent = context.getPackageManager()
            //    .getLaunchIntentForPackage(pkgName);
            Intent intent = new Intent();
            //intent.putExtra("category","AppStore");"com.tencent.android.qqdownloader"
            intent.putExtra("pakName", pkgName);
            intent.setComponent(new ComponentName(pkgName,"com.example.fewwind.chaozhuofirst.ui.SecondActivity"));
            context.startActivity(intent);
        } catch (Exception e) {
            Toast.makeText(context, e.toString(),
                Toast.LENGTH_SHORT).show();
        }
    }
    

    相关文章

      网友评论

          本文标题:启动任意程序的界面

          本文链接:https://www.haomeiwen.com/subject/olbdzttx.html