10

我决定考虑将静态快捷方式添加到应用程序中,使用此页面作为参考:

https://developer.android.com/preview/shortcuts.html

我的快捷方式的 XML 目前如下所示:

<?xml version="1.0" encoding="utf-8"?>
<shortcuts xmlns:tools="http://schemas.android.com/tools"
    xmlns:android="http://schemas.android.com/apk/res/android">
    <shortcut
        android:shortcutId="id"
        android:enabled="true"
        android:icon="@drawable/icon"
        android:shortcutShortLabel="@string/short_label"
        android:shortcutLongLabel="@string/long_label"
        android:shortcutDisabledMessage="@string/disabled_message">
        <intent
            android:action="android.intent.action.VIEW"
            android:targetPackage="com.example"
            android:targetClass="com.example.Activity" />
        <categories android:name="android.shortcut.category" />
    </shortcut>
</shortcuts>

问题来自targetClass变量,因为我找不到启动 aFragment而不是Activity. 我想从快捷方式启动的大多数主要页面都Fragments显示在Activity. 我怎样才能让intent直接启动到一个Fragment

4

2 回答 2

24

您可以执行以下操作:

1) 在中指定的意图中shortcuts.xml,设置自定义意图操作字符串:

 <intent
        android:action="com.your.packagename.custom.name"
        android:targetPackage="com.example"
        android:targetClass="com.example.Activity" />

2) 检查getIntent().getAction()Activity 中指定的 for intent 操作android:targetClass

public void onCreate(Bundle savedInstanceState){
    if (CUSTOM_NAME.equals(getIntent().getAction())) {
        // do Fragment transactions here 
    }
}
于 2016-10-29T14:03:08.973 回答
4

您可以使用Shortbread库轻松实现此目的。

class MainActivity : AppCompatActivity() {
        
    @Shortcut(id = "movies", shortLabel = "Movies", icon = R.drawable.ic_shortcut_movies)
    fun showMovies() {
        supportFragmentManager.beginTransaction()
            .replace(R.id.fragment_container, MoviesFragment())
            .commit()
    }
}
于 2017-03-16T22:49:43.767 回答