allwinner_a64/android/sdk/eclipse/plugins/com.android.ide.eclipse.adt/templates/java_file.template
2018-08-08 20:16:11 +08:00

13 lines
354 B
Text

package PACKAGE;
IMPORT_RESOURCE_CLASS
import android.app.Activity;
import android.os.Bundle;
public class ACTIVITY_NAME extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
}
}