summaryrefslogblamecommitdiff
path: root/client/.metadata/.plugins/org.eclipse.core.resources/.history/7e/00390e21280d00131249f322b63acde8
blob: 422fa96b4dbe2d3d163b5c86d836fe8c3f09ac9b (plain) (tree)




























                                                                                        
package com.macaroon.piztor;

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

public class InitAct extends PiztorAct {

	@Override
	protected void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		id = "initAct";
		setContentView(R.layout.activity_init);
	}
	
	@Override
	protected void onStart() {
		super.onStart();
		AppMgr.trigger(AppMgr.hasToken);
	}

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

}