Skip to content

Instantly share code, notes, and snippets.

@ejnahc
Created June 8, 2014 15:36
Show Gist options
  • Save ejnahc/c28dbce4773df39dd506 to your computer and use it in GitHub Desktop.
Save ejnahc/c28dbce4773df39dd506 to your computer and use it in GitHub Desktop.
import android.support.v7.app.ActionBarActivity;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;
import com.github.nkzawa.emitter.Emitter;
import com.github.nkzawa.socketio.client.IO;
import com.github.nkzawa.socketio.client.Socket;
public class LoginActivity extends ActionBarActivity {
private Socket socket;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_login);
System.out.println("okay..");
try {
IO.Options opts = new IO.Options();
opts.forceNew = true;
opts.reconnection = false;
opts.multiplex = true;
opts.port = 3000;
opts.timeout = 1;
socket = IO.socket("http://test.test:3000", opts);
socket.on(Socket.EVENT_CONNECT, new Emitter.Listener() {
@Override
public void call(Object... args) {
System.out.println("Server connected");
socket.emit("hello", "asdfsdf");
}
}).on("event", new Emitter.Listener() {
@Override
public void call(Object... args) {
// JSONObject obj = (JSONObject)args[0];
System.out.println("@event");
}
}).on(Socket.EVENT_DISCONNECT, new Emitter.Listener() {
@Override
public void call(Object... objects) {
System.out.println("@disconnect");
}
});
System.out.println("try to connect..");
socket.connect();
} catch (Exception e) {
System.out.println("exception occured@@");
e.printStackTrace();
}
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.login, menu);
return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
// Handle action bar item clicks here. The action bar will
// automatically handle clicks on the Home/Up button, so long
// as you specify a parent activity in AndroidManifest.xml.
int id = item.getItemId();
if (id == R.id.action_settings) {
return true;
}
return super.onOptionsItemSelected(item);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment