Back to project page FragmentWeixinDemo.
The source code is released under:
MIT License
If you think the Android project FragmentWeixinDemo 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 com.mostmood.util; // w w w. j a v a2 s . com import android.content.Context; import android.view.View; import android.widget.TabHost.TabContentFactory; public class DummyTabContent implements TabContentFactory{ private Context mContext; public DummyTabContent(Context context){ mContext = context; } @Override public View createTabContent(String tag) { View v = new View(mContext); return v; } }