summaryrefslogblamecommitdiff
path: root/client/.metadata/.plugins/org.eclipse.core.resources/.history/0/b08b1b0b560d00131719b896d543f08c
blob: 02e380038f8af31f804e813ae818bb4cd5ce2139 (plain) (tree)












































                                                                                              
package com.macaroon.piztor;

import android.location.Location;
import android.os.Bundle;
import android.os.Handler;
import android.os.Message;
import android.view.Menu;

public class Main extends PiztorAct {

	ActMgr actMgr;
	
	Handler handler = new Handler() {
		@Override
		public void handleMessage(Message m) {
			Location l = (Location) m.objl
			ReqUpdate r = new ReqUpdate(UserInfo.token, , longitude, time, alive) 
			AppMgr.transam.send();
		}
	};
	
	@Override
	protected void onCreate(Bundle savedInstanceState) {
		id = "Main";
		super.onCreate(savedInstanceState);
		EmptyStatus[] r = new EmptyStatus[1];
		r[0] = new EmptyStatus();
		actMgr = new ActMgr(this, r[0], r);
		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;
	}

}