【仅供内部供应商使用,不提供对外解答和培训】
【仅供内部供应商使用,不提供对外解答和培训】
数据分析的包名: "com.fr.android.IFWidget" 对应的实际是class name "com.fr.android.activity.LoadAppFromWelcomeActivity"启动代码为Intent intent = new Intent(Intent.ACTION_MAIN);
// package名, class名
ComponentName comp = new ComponentName("com.fr.android.IFWidget", "com.fr.android.activity.LoadAppFromWelcomeActivity");
intent.setComponent(comp);
// 参数
Bundle bundle = new Bundle();
bundle.putString("xxx", "test");
intent.putExtras(bundle);
startActivity(intent);