我正在尋找一個意圖過濾器,當你在聯繫人列表中,並且你長時間按下一個聯繫人,所以菜單出現時android聯繫人意圖?
0
A
回答
0
0
這個意圖過濾器將捕捉你的點擊(不是長按)當你在你的聯繫人應用程序中的「所有」的文章:
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="vnd.android.cursor.item/contact" android:host="com.android.contacts"/>
</intent-filter>
提出,在您的應用程序的清單,安裝,和android會詢問你使用什麼
注:沒有,當你對股票的聯繫人應用程序的聯繫人列表中的聯繫人長單擊生成意圖
相關問題
- 1. Xamarin Android編輯聯繫人意圖
- 2. Android聯繫人圖片
- 3. Android的聯繫人 - 更新注意
- 4. Android聯繫人
- 5. 使用意圖打開聯繫人?
- 6. 試圖在Android聯繫人中存儲聯繫人條目
- 7. Android的聯繫人
- 8. autocomplete聯繫人android
- 9. Android:如何通過意圖分享聯繫人?
- 10. Android的Facebook的使者原始聯繫人的意圖
- 11. Android。使用contact_id或contact_name通過意圖打開聯繫人
- 12. Android:使用ContactsContract插入意圖設置聯繫人照片
- 13. 在聯繫人上添加/編輯/更改廣播意圖 - android
- 14. 使用意圖插入聯繫人姓氏android
- 15. 在Android中使用意圖添加聯繫人
- 16. Android的意圖呼叫聯繫人,而不是數字
- 17. 使用意圖的Android聯繫人內容提供商
- 18. 僅在Android設備中使用ACTION_PICKT意圖顯示聯繫人
- 19. Android中是否有打開小聯繫人卡片的意圖?
- 20. Android意圖使用StructuredName創建聯繫人
- 21. 通過意向轉到聯繫人中的某個聯繫人
- 22. 如何在聯繫人(android)中添加聯合聯繫人圖像?
- 23. Android如何閱讀android聯繫人和SIM聯繫人?
- 24. Android聯繫人圖片問題
- 25. Android獲取聯繫人手機圖像
- 26. 在Android上檢索聯繫人圖像
- 27. Android Custom ListView與聯繫人圖片
- 28. 聯繫人Android 4.3的默認圖像
- 29. Android聯繫人圖像設置問題
- 30. Android更改聯繫人圖片
究竟是你想做些什麼?正如法爾馬裏所說的那樣,不會有任何具體的意圖。 – Computerish 2010-10-27 20:42:10
我希望能夠長時間按下聯繫人,並在出現的菜單中,我希望能夠點擊並選擇自動發送預定義的消息給該聯繫人 – Mars 2010-10-27 21:04:47