迷茫2017-04-17 12:05:33
在包名下新建一個 wxapi 目錄,在 wxapi 裡面新建一個 WXEntryActivity 的 Activity,名字要一模一樣。
假設包名是 xxx.xxx.xxx 那麼就是
xxx.xxx.xxx.wxapi.WXEntryActivity.java
同時在 AndroidManifest.xml 聲明
<activity
android:name=".wxapi.WXEntryActivity"
android:exported="true"
android:label="@string/title_activity_wxentry"
android:screenOrientation="portrait"
android:theme="@android:style/Theme.NoDisplay" > 这行加上之后可以屏蔽掉闪动的情况,一定要加上哦,不用谢。
實作那個介面就可以了
具體可以看 http://seanchense.github.io/blog/android_use_wechat_oauth.html