如何在Android中使用快捷方式传递数据

时间:2018-07-10 11:20:54

标签: java android android-intent

我正在尝试使用用户单击按钮时创建的快捷方式传递数据。这样,当用户通过特定的快捷方式运行应用程序时,data会接收该数据并对该数据执行决策。 例如,我要传递网站的URL。如果用户单击按钮1,则该快捷方式的URL将为“ http://expample1.com”,如果单击按钮2,则将使用第二个URL“ http://expample2.com”创建一个新的快捷方式。

我浏览了其他问题,但它们仅涉及创建快捷方式。我遇到的另一种方法是使用MainActivity,但它仅支持上面的ShortcutManager。 这是创建我编写的快捷方式的代码。现在如何在其中添加数据以供使用?

API level 25

1 个答案:

答案 0 :(得分:0)

好吧,this API是在API级别1中添加的。给您一个用法示例:

AndroidManifest.xml

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    package="exploitrme.shortcuttest">

    <uses-permission android:name="com.android.launcher.permission.INSTALL_SHORTCUT" />
    <uses-permission android:name="com.android.launcher.permission.UNINSTALL_SHORTCUT" />

    <application
        android:allowBackup="false"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:roundIcon="@mipmap/ic_launcher_round"
        android:supportsRtl="true"
        android:theme="@style/AppTheme"
        tools:ignore="GoogleAppIndexingWarning">
        <activity
            android:name=".MainActivity"
            android:exported="true">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>

</manifest>

MainActivity.class

package exploitrme.shortcuttest;

import android.content.Intent;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.widget.Toast;

public class MainActivity extends AppCompatActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        if (getIntent().getIntExtra("toe", 501) != 1123) {
            addShortcut();
        }else{
            Toast.makeText(getApplicationContext(),"Started From Shortcut",Toast.LENGTH_LONG).show();
        }
    }

    void addShortcut() {
        Intent shortcutIntent = new Intent(getApplicationContext(), MainActivity.class);
        shortcutIntent.setAction(Intent.ACTION_MAIN);
        shortcutIntent.putExtra("toe", 1123);

        Intent addIntent = new Intent();
        addIntent.putExtra(Intent.EXTRA_SHORTCUT_INTENT, shortcutIntent);
        addIntent.putExtra(Intent.EXTRA_SHORTCUT_NAME, "SAMPLE SHORTCUT!!");
        addIntent.putExtra(Intent.EXTRA_SHORTCUT_ICON_RESOURCE, Intent.ShortcutIconResource.fromContext(getApplicationContext(), R.drawable.ic_ac_unit_black_24dp));
        addIntent.putExtra("duplicate", false);
        addIntent.setAction("com.android.launcher.action.INSTALL_SHORTCUT");
        getApplicationContext().sendBroadcast(addIntent);

    }
}

[EDIT]:更新了我刚刚创建的示例应用程序,因为上一个答案对您来说还不清楚。