Back to project page STweaks.
The source code is released under:
GNU General Public License
If you think the Android project STweaks 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.gokhanmoral.stweaks.app; /* w ww .ja v a2 s . c o m*/ import java.util.ArrayList; import java.util.List; import android.app.Activity; import android.content.Context; import android.view.View; import android.view.ViewGroup; public class SyhTab { public String name; public List<SyhPane> panes; protected Context mContext; protected Activity mActivity; public SyhTab(Context context, Activity activity) { name = ""; panes = new ArrayList<SyhPane>(); mContext = context; mActivity = activity; } public View getCustomView(ViewGroup parent) { return null; } }