summaryrefslogblamecommitdiff
path: root/client/.metadata/.plugins/org.eclipse.core.resources/.history/7e/a0c4a019530d00131719b896d543f08c
blob: 52bb70a17045c1f241458ef0b2161f7513f8ba23 (plain) (tree)
































                                                                                        
package com.macaroon.piztor;

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

public class Main extends PiztorAct {

	Handler handler = new Handler() {
		
	}
	
	@Override
	protected void onCreate(Bundle savedInstanceState) {
		id = "Main";
		super.onCreate(savedInstanceState);
		setContentView(R.layout.activity_main);
	}
	
	@Override
	protected void onStart() {
		super.onStart();
		
	}

	@Override
	public boolean onCreateOptionsMenu(Menu menu) {
		// Inflate the menu; this adds items to the action bar if it is present.
		getMenuInflater().inflate(R.menu.main, menu);
		return true;
	}

}