project_files/Android-build/SDL-android-project/src/org/hedgewars/mobile/MainActivity.java
author Xeli
Thu, 14 Jul 2011 15:42:54 +0200
branchhedgeroid
changeset 5416 26a36326d199
parent 5397 4ae1b082e4ba
child 5621 ea796c83ea47
permissions -rw-r--r--
Added a small example of the frontend still being worked but commited so the downloader now works

package org.hedgewars.mobile;

import org.hedgewars.mobile.Downloader.DownloadActivity;

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;

public class MainActivity extends Activity {

	Button downloader, startGame;
	
	public void onCreate(Bundle sis){
		super.onCreate(sis);
		setContentView(R.layout.main);
		
		downloader = (Button)findViewById(R.id.downloader);
		startGame = (Button)findViewById(R.id.startGame);
		
		downloader.setOnClickListener(downloadClicker);
		startGame.setOnClickListener(startGameClicker);
	}
	
	
	
	private OnClickListener downloadClicker = new OnClickListener(){
		public void onClick(View v){
			startActivityForResult(new Intent(getApplicationContext(), DownloadActivity.class), 0);
		}
	};

	private OnClickListener startGameClicker = new OnClickListener(){
		public void onClick(View v){
			startActivity(new Intent(getApplicationContext(), StartGameActivity.class));
		}
	};
	
}