IM 即时通讯 (442)
Android (209)
- 初始化&链接 (8)
- 事件&监听处理 (7)
- 用户信息 (13)
- 会话列表 (16)
- 聊天会话 (26)
- 消息处理 (35)
- 自定义消息 (6)
- 音视频 (2)
- 推送&通知 (34)
- 扩展功能 (4)
- 第三方地图 (3)
- 依赖&配置 (9)
- 升级说明 (3)
- 其他 (43)
iOS (168)
- SDK 导入 (10)
- 连接 (8)
- 事件处理 (2)
- 用户信息 (3)
- 会话列表 (14)
- 聊天会话 (44)
- 消息处理 (26)
- 自定义消息 (8)
- 推送&通知 (19)
- 扩展功能 (5)
- 国际化 (4)
- 音视频 (3)
- 其他 (22)
Web (36)
Server (29)
No Activity found to handle Intent{ act=android.intent.action.VIEW...}
启动会话的时候:No Activity found to handle Intent { act=android.intent.action.VIEW dat=rong://zcfinance.platform/conversation/private?targetId=2&title=jjjwen }
发布时间: 2018-04-20 11:36
回答:
检查一下您的清单文件中,有没有注册一个Activity来处理这个intent。
可以参考:
<activity android:name=".ui.activity.ConversationActivity" android:launchMode="singleTop" android:screenOrientation="portrait" android:windowSoftInputMode="stateHidden|adjustResize"> <intent-filter> <action android:name="android.intent.action.VIEW" /> <category android:name="android.intent.category.DEFAULT" /> <data android:host="cn.rongcloud.im" android:pathPrefix="/conversation/" android:scheme="rong" /> </intent-filter> </activity>