Android 当对应用程序不有用时,将意图传递给本机通讯簿

Android 当对应用程序不有用时,将意图传递给本机通讯簿,android,native,edit,contact,Android,Native,Edit,Contact,我已经问过这个问题,但我错把它删掉了。很抱歉再次发送。 当用户选择编辑本机通讯簿中的联系人时,我注册了要启动的活动之一 <intent-filter> <action android:name="android.intent.action.EDIT" /> <category android:name="android.intent.category.DEFAULT" />

我已经问过这个问题,但我错把它删掉了。很抱歉再次发送。 当用户选择编辑本机通讯簿中的联系人时,我注册了要启动的活动之一

        <intent-filter>
            <action android:name="android.intent.action.EDIT" />
            <category android:name="android.intent.category.DEFAULT" />
            <data
                android:host="contacts"
                android:mimeType="vnd.android.cursor.item/person" />
            <data
                android:host="com.android.contacts"
                android:mimeType="vnd.android.cursor.item/contact" />
            <data
                android:host="com.android.contacts"
                android:mimeType="vnd.android.cursor.item/raw_contact" />                       
        </intent-filter> 

现在询问用户是使用我的应用程序还是本机应用程序

如果我的应用程序与该联系人没有任何关系,我希望能够将责任转交给本机应用程序

我如何做到这一点,而不必再次询问用户要使用的应用程序

谢谢