Heim > Fragen und Antworten > Hauptteil
迷茫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