Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我开发了一个语音识别安卓应用程序。我希望将它的启动器图标放在呼叫拨号器上,以便用户可以启动它并且应用程序将记录呼叫对话以进行分析。这个怎么做?
关于放置图标:启动器/主页应用程序只能执行此操作,并且您无法从您的程序中告诉它执行此操作。
关于提供您的应用程序作为拨号器应用程序的替代品:进行一项意味着:
<intent-filter> <action android:name="android.intent.action.DIAL" /> </intent-filter>
在清单文件中。