blob: 251ec1a29b2265e87454b03105487c30e386395b [file] [log] [blame]
package org.org.eclipse.uomo.examples.units.android;
import android.app.Activity;
import android.os.Bundle;
import android.util.Log;
import android.widget.RelativeLayout;
public class HelloAndroidActivity extends Activity {
private static String TAG = "player";
/**
* Called when the activity is first created.
* @param savedInstanceState If the activity is being re-initialized after
* previously being shut down then this Bundle contains the data it most
* recently supplied in onSaveInstanceState(Bundle). <b>Note: Otherwise it is null.</b>
*/
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
Log.i(TAG, "onCreate");
RelativeLayout relativeLayout = new RelativeLayout(this);
setContentView(relativeLayout);
}
}