微信的分享真难用啊啊啊啊啊啊啊啊啊
特别是分享结果的检测,真难搞啊啊啊啊啊啊啊啊
谁说微信的产品设计做得非常棒啊啊啊啊啊啊啊
1. 注册开发者
http://open.weixin.qq.com
审核通过后,拿到APP_ID
如果审核没有通过,还想分享,那么直接跳到文章最后,有介绍
2. 声明接受分享结果的Activity
<!-- 请注意 这里的.wxapi 不是这个结构是得不到结果的 -->
<activity
android:name=".wxapi.WXEntryActivity"
android:exported="true"
android:label="@string/title_activity_wxentry"
android:theme="@android:style/Theme.Translucent" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
3. 分享代码实现
//分享网址
private void shareToWXCommon(boolean isPYQ)
{
Toast.makeText(this, R.string.launching_wx, Toast.LENGTH_SHORT).show();
IWXAPI api;
api = WXAPIFactory.createWXAPI(this, TuHaoConstants.WX_APP_ID);
WXWebpageObject webpage = new WXWebpageObject();
Util.ConfigParser configParser = new Util.ConfigParser(this);
webpage.webpageUrl = configParser.getS