3

我在Android中的应用程序之间交换,我传递了一系列参数来自定义另一个应用程序(颜色,徽标等),但是我找不到我传递的样式,我只能找到drawables,颜色,布局.

有没有办法找到样式?

我正在使用这个

Intent intent = new Intent();
        intent.setClassName("com.app.to.call", "com.app.to.call.LoginActivity");
intent.putExtra("package", getPackageName());
intent.putExtra("style", R.style.AppTheme);
startActivity(intent);

从我正在使用的其他应用程序

if(customization.getKeys().getString(Global.LINK_PACKAGE) == null) {
            customization = null;
        }else{
            Resources resources = getPackageManager().getResourcesForApplication(customization.getKeys().getString(Global.LINK_PACKAGE));
            container.setBackgroundColor(resources.getColor(customization.getKeys().getInt(Global.LINK_BACKGROUND_COLOR)));
            setTheme();//How can I get the style?
        }

其中customization.getKeys() 是我传递的键。

4

1 回答 1

0

请记住,两个应用程序之间的 R 类可以具有相同名称的变量但具有不同的值。我不建议在应用程序之间传递 R 值

于 2015-04-21T19:23:41.337 回答