Main.java :  » App » androway » org » me » android_experiment_02 » Android Open Source

Android Open Source » App » androway 
androway » org » me » android_experiment_02 » Main.java
package org.me.android_experiment_02;

import android.app.Activity;
import android.os.Bundle;

public class Main extends Activity
{
    @Override
    public void onCreate(Bundle icicle)
    {
        super.onCreate(icicle);

        // The content of our screen.
        setContentView(R.layout.main);
    }
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.