2011-03-28 66 views

回答

0

如果我們在內部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> 

這是他們所使用的意圖過濾器他們希望在有人查看聯繫人時顯示的活動內。您可能需要做一些小小的調整以獲得您想要的準確效果,但就我能理解您的問題而言,這是您需要的答案。

相關問題