Back to project page ShareSDK-for-Android.
The source code is released under:
MIT License
If you think the Android project ShareSDK-for-Android listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package cn.sharesdk.demo; //www. j a v a2 s . c o m import android.view.Window; import cn.sharesdk.tencent.qzone.QZoneWebShareAdapter; /** a example of {@link QZoneWebShareAdapter} */ public class MyQZoneWebShareAdapter extends QZoneWebShareAdapter { public void onCreate() { // display the page in dialog mode getActivity().setTheme(android.R.style.Theme_Dialog); getActivity().requestWindowFeature(Window.FEATURE_NO_TITLE); super.onCreate(); // change page title getTitleLayout().getTvTitle().setText(R.string.qzone_customer_share_style); } }