Launch.java :  » App » mighty-maps » com » epsi » mightymaps » act » Android Open Source

Android Open Source » App » mighty maps 
mighty maps » com » epsi » mightymaps » act » Launch.java
package com.epsi.mightymaps.act;

import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;

import com.epsi.mightymaps.R;

public class Launch extends Activity implements OnClickListener {

  @Override
  public void onCreate(final Bundle pSavedInstanceState) {
    super.onCreate(pSavedInstanceState);
    setContentView(R.layout.launch);
    ((Button) findViewById(R.id.valider)).setOnClickListener(this);
  }

  public void onClick(View v) {
    Intent tabs = new Intent(this, OngletsManager.class);
    startActivity(tabs);
    finish();

  }

}
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.