3
當我點擊菜單列表中的聯繫人圖標,然後打開我的應用程序,而不是在建立andriod。如何設置我的應用程序,而不是默認的Android聯繫人的應用程序
只是告訴我,我在做menifest ...
PLZ幫我ñ在此先感謝。
PLZ給我你的黃金時間,它..
當我點擊菜單列表中的聯繫人圖標,然後打開我的應用程序,而不是在建立andriod。如何設置我的應用程序,而不是默認的Android聯繫人的應用程序
只是告訴我,我在做menifest ...
PLZ幫我ñ在此先感謝。
PLZ給我你的黃金時間,它..
如果我們在內部Contacts.apk Android中的AndroidManifest看,我們發現這
<activity .....>
<intent-filter>
<action android:name="android.intent.action.VIEW"/>
<category android:name="android.intent.category.DEFAULT"/>
<data android:mimeType="vnd.android.cursor.dir/person" android:host="contacts"/>
<data android:mimeType="vnd.android.cursor.dir/contact" android:host="com.android.contacts"/>
</intent-filter>
</activity>
這是他們所使用的意圖過濾器他們希望在有人查看聯繫人時顯示的活動內。您可能需要做一些小小的調整以獲得您想要的準確效果,但就我能理解您的問題而言,這是您需要的答案。