summaryrefslogblamecommitdiff
path: root/client/.metadata/.plugins/org.eclipse.core.resources/.history/6e/a03ae288270d00131050e648e11def2a
blob: 3fdce8171e80139588188eb588eb025d9cd9948d (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);
		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;
	}

}