在Android快捷方式中使用变量功能xml?

时间:2017-02-01 16:13:38

标签: android shortcuts

我正在使用Android的shortcut功能,我有以下xml:

<shortcuts
    xmlns:tools="http://schemas.android.com/tools"
    xmlns:android="http://schemas.android.com/apk/res/android">
    <shortcut
        android:shortcutId="some_id"
        android:enabled="true"
        android:icon="@drawable/ic_icon"
        android:shortcutShortLabel="@string/short_label"
        android:shortcutLongLabel="@string/long_label"
        tools:targetApi="n_mr1">
        <intent
            android:action="android.intent.action.MAIN"
            android:targetPackage="my.package"
            android:targetClass="my.package.MainActivity" />
    </shortcut>
</shortcuts>

有这样的话,它没有问题。

我是否可以在快捷方式xml文件中使用变量,例如AndroidManifest.xml中的变量:

<uses-permission android:name="${applicationId}.permission.C2D_MESSAGE"/>

所以我希望在快捷方式上有相同的行为,但不知何故它不起作用:

<intent
    android:action="android.intent.action.MAIN"
    android:targetPackage="${applicationId}"
    android:targetClass="my.package.MainActivity" />

你知道如何在这里使用变量吗?

我想这样做的原因是我们有多个具有不同包名称的环境:my.package.testmy.package.debugmy.package.hotfix等...

2 个答案:

答案 0 :(得分:3)

我创建了一个插件,可以在资源中使用manifestPlaceholders,并且可以与android gradle插件3.0.0版一起使用

https://github.com/timfreiheit/ResourcePlaceholdersPlugin

的src /主/ RES / shortcuts.xml:

<shortcuts xmlns:android="http://schemas.android.com/apk/res/android">
    <shortcut ...>

        <intent
            android:action="android.intent.action.VIEW"
            android:targetClass="com.test.MainActivity"
            android:targetPackage="${applicationId}"/>
    </shortcut>
</shortcuts>

答案 1 :(得分:1)

  

你知道如何在这里使用变量吗?

目前不支持。清单合并过程中使用清单占位符进行清单。资源没有等价物。

最简单的解决方案将围绕设置专用构建类型或产品风格。在您的情况下,似乎构建类型是适当的模型。拥有专用的快捷方式每种构建类型的XML资源都可以使用。理论上,您可以使用应用程序ID为每个构建类型设置专用字符串资源(例如,app_id,在Gradle中使用resValue设置),然后在单个快捷方式XML资源中使用android:targetPackage="@string/app_id" 。但是,我不确定我们是否可以在那里使用字符串资源。