|
1 p9 F$ S6 |: H$ a3 S. v, D: P. t* a* f
- //打开附近的人界面,这个具体参数请查看开发博客
- var dic = new Dictionary<string, string> { { "act", "opennearui" } };
- SendIntent(dic); c; N: u- D; {( p# A0 ~) w6 S& H
4 P# m8 B, R' ~, `4 z3 U
上一篇博文中,我们的DEMO插件 里有这么一句,其实这个是我们的开发人员预置的接口,可用的参数有以下几个- //打开指定用户的聊天对话界面
- var dic = new Dictionary<string, string> { { "act", "openchatui" },{"userid“,”用户id"} };
- SendIntent(dic);& W* y5 u+ G/ ~% K
! j+ G- V/ Z1 p
- //打开指定用户的用户信息界面
- var dic = new Dictionary<string, string> { { "act", "openuser" },{"userid“,”用户id"} };
- SendIntent(dic);
7 J9 s% q3 }- u7 y G& w . T% v1 e5 {! Q- p! J- ~
- //打开好友群发界面
- var dic = new Dictionary<string, string> { { "act", "openmasssend" } };
- SendIntent(dic);6 w2 Z# V1 r6 X- F! w
' a% ~3 `3 Z; S: v0 }- i% l/ H
- //打开搜索好友界面
- var dic = new Dictionary<string, string> { { "act", "searchui" } };
- SendIntent(dic);
& H1 L8 u8 w+ N
/ m! D. W1 _( n$ T- //打开我的信息界面
- var dic = new Dictionary<string, string> { { "act", "openinfoui" }};
- SendIntent(dic);
7 J/ l7 w' q% }0 ^" Z1 K" C
9 A9 S: E% O+ S" Q4 a& P" }- //打开朋友圈界面
- var dic = new Dictionary<string, string> { { "act", "opensnsui" }};
- SendIntent(dic);; ~: ^% {2 c6 w7 c
1 S3 F8 W1 E7 f
- //打开附近的人界面
- var dic = new Dictionary<string, string> { { "act", "opennearui" } };
- SendIntent(dic);
2 k1 H* Y# F3 H( k" s" p% p; H' f
) Y5 h( s% I8 V4 O# [/ e% Q- //打开附近对我打招呼的人界面
- var dic = new Dictionary<string, string> { { "act", "opennearsayhi" } };
- SendIntent(dic);
. O9 w6 W3 y/ @: M( I
# v+ F1 Z$ E( Z' w5 w+ T- //打开摇一摇
- var dic = new Dictionary<string, string> { { "act", "openyaoyiyao" } };
- SendIntent(dic);& w+ S9 e( S4 O6 k4 h/ j
1 e, M! G. Q. \( _, d: J
- //打开摇一摇对我打招呼的人
- var dic = new Dictionary<string, string> { { "act", "openyaoyiyaosayhi" };
- SendIntent(dic);
2 g) S# f) F# W ]7 s& f% b
$ h; |- u. [0 d9 ^" g- //打开指定url
- var dic = new Dictionary<string, string> { { "act", "openurl" } ,{"url","目标地址"}};
- SendIntent(dic);" @- T; a& c/ y" T4 l
目前就这些
0 i# M3 k S& W$ b |
|