Android的“谷歌文件”不使用“Intent.FLAG_ACTIVITY_NEW_TASK”

Android "Files by Google" not use "Intent.FLAG_ACTIVITY_NEW_TASK"

提问人:pol2020 提问时间:11/1/2023 更新时间:11/1/2023 访问量:36

问:

我不明白为什么当我使用“Files by Google”打开文本文件时,我的应用程序在“Files by Google”中打开,但Google Chrome或MS Edge在“Files by Google”之外的另一个窗口中打开文本文件

<application>
    <activity>
        <intent-filter>
            <action android:name="android.intent.action.MAIN"></action>
            <category android:name="android.intent.category.LAUNCHER"></category>
        </intent-filter>
        <intent-filter>
            <action android:name="android.intent.action.VIEW"/>
            <category android:name="android.intent.category.BROWSABLE"/>
            <category android:name="android.intent.category.DEFAULT"/>
            <data android:scheme="file" />
            <data android:scheme="content" />
            <data android:mimeType="text/plain" />
        </intent-filter>
    </activity>
</application>

我的应用程序是否可以在“Files by Google”之外打开文本文件? 谢谢

Android 文件 文件关联

评论

0赞 blackapps 11/1/2023
你能发布一张我不知道的图片吗?
0赞 blackapps 11/1/2023
我的设备上只有“文件”应用。我只在尝试使用应用打开文件时看到“Google 文件”。你在干什么?看起来好像您没有选择您的应用程序。
0赞 pol2020 11/2/2023
例如,在Gmail上,您可以在“设置”>“常规设置”>“在Gmail中打开网页链接”中进行选择,在“Google 文件存储”或其他窗口中打开文件也是同样的问题。play.google.com/store/apps/......

答: 暂无答案