Back to project page dttv-android.
The source code is released under:
GNU General Public License
If you think the Android project dttv-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 dttv.app.compnent; /*from w w w . jav a2s . co m*/ import android.app.Activity; import android.view.View; public abstract class Compnent { public Compnent(Activity activity) { // TODO Auto-generated constructor stub super(); //initialize(); } protected void setContentView(View contentView){ } public void initialize(){ } public void destroy(){} }