在清单文件定义意向

在清单文件定义意向

本文介绍了在清单文件定义意向的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想,当用户选择发送消息从联系人应用程序开始我自己的短信编辑器。如何在清单文件中定义的意图,让路过联系方式给编辑?

I would like to start my own SMS editor when user selects "Send message" from contacts application. How do I define intent in manifest file to allow passing contact details to the editor?

非常感谢

推荐答案

有许多触点的应用为Android,不只是一个。你拒绝指出哪些联系人应用程序你指的是。

There are many "contacts applications" for Android, not just one. You declined to indicate which "contacts application" you are referring to.

一些联系人应用程序可以使用 ACTION_SENDTO smsto: 乌里发送短信。在这种情况下,您可以添加<意向滤光器> 你的清单看一个 android.intent.action.SENDTO <作用> <数据> 计划 smsto的:。这应该引起您的活动成为用户的选择。

Some "contacts applications" may use ACTION_SENDTO with an smsto: Uri for sending an SMS. In that case, you can add an <intent-filter> to your manifest watching for an android.intent.action.SENDTO <action> and a <data> with scheme of smsto:. That should trigger your activity to be an option for the user.

但是,请记住,不是所有的触点的应用可以使用此功能。

However, bear in mind that not all "contacts applications" may use this.

这篇关于在清单文件定义意向的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-26 08:09