我正在Gingerbread Galaxy Tab P1000上運行最新版本的GTalk(使用市場上的Talk安裝程序)。啓動視頻通話
我現在想以編程方式發起視頻通話,只要相關聯繫人在線且可用。
,因爲我沒有發現我在看related XML任何文件,發現以下有趣的部分:
<activity-alias android:icon="@drawable/ic_launcher_google_videochat" android:name="PublicCallIntentDispatcher" android:targetActivity="PublicIntentDispatcher">
<intent-filter>
<action android:name="android.intent.action.SENDTO" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="vnd.android.cursor.item/video-chat-address" android:scheme="xmpp" />
</intent-filter>
</activity-alias>
由於它是一個「發送到」行動,我不需要特別許可,是嗎?我的問題是,我不知道如何獲得vnd.android.cursor.item/video-chat-address類型的項目。你有什麼想法或暗示我可能會嘗試什麼?
在此先感謝!
(有點生鏽就可以了):你知道一個現有軟件發送一個Intent的例子嗎(從聯繫頁面可能?)。您可能會嘗試啓動視頻聊天,檢查您的LogCat,併爲您的Intent反向設計URI格式。我沒有安裝允許視頻聊天的Talk應用程序,所以我不能自己嘗試,對不起!希望這可以幫助! – OEP