Back to project page edu-video-client.
The source code is released under:
Apache License
If you think the Android project edu-video-client 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.ngm.explaintome; // w ww . j av a 2 s . c om import android.app.Activity; import android.content.Intent; public class BaseActivity extends Activity { protected void launchActvity(Class<? extends Activity> activityClass) { Intent intent = new Intent(this, activityClass); startActivity(intent); } }