Android Open Source - droidBBpush Main Activity






From Project

Back to project page droidBBpush.

License

The source code is released under:

This is free and unencumbered software released into the public domain. Anyone is free to copy, modify, publish, use, compile, sell, or distribute this software, either in source code form or as a co...

If you think the Android project droidBBpush listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

package com.arg3.examples.droidbb;
/* www  . j  a v a  2s .c  o  m*/
import android.os.Bundle;
import android.support.v7.app.ActionBarActivity;
import android.view.Menu;
import android.view.MenuItem;
import android.widget.TextView;

import com.arg3.examples.droidbb.gcm.GCMHandler;

import java.util.Observable;
import java.util.Observer;

import javax.inject.Inject;

public class MainActivity extends ActionBarActivity implements Observer {

    @Inject
    GCMHandler push;

    @Inject
    PushRegistrar registrar;

    TextView token;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

        setContentView(R.layout.activity_main);

        MainApplication app = (MainApplication) getApplication();

        app.inject(this);

        token = (TextView) findViewById(R.id.regId);

        TextView hello = (TextView) findViewById(R.id.greeting);

        hello.setText("Hello, " + BuildConfig.FLAVOR);

        token.setText(registrar.getRegistrationId());
    }

    @Override
    public void onStart() {
        super.onStart();

        registrar.addObserver(this);

        push.init(this);

        if (!push.isAvailable()) {
            token.setText("Not available");
        }
    }

    @Override
    protected void onDestroy() {
        super.onDestroy();

        push.destroy(this);
    }

    @Override
    public void update(Observable observable, Object o) {
        token.setText(registrar.getRegistrationId());
    }
}




Java Source Code List

com.arg3.droid.bbpush.ApplicationTest.java
com.arg3.examples.droidbb.MainActivity.java
com.arg3.examples.droidbb.MainApplication.java
com.arg3.examples.droidbb.MainModule.java
com.arg3.examples.droidbb.PushNotifier.java
com.arg3.examples.droidbb.PushRegistrar.java
com.arg3.examples.droidbb.PushService.java
com.arg3.examples.droidbb.annotations.ForApplication.java
com.arg3.examples.droidbb.gcm.GCMBroadcastReceiver.java
com.arg3.examples.droidbb.gcm.GCMBroadcastReceiver.java
com.arg3.examples.droidbb.gcm.GCMHandler.java
com.arg3.examples.droidbb.gcm.GCMHandler.java
com.arg3.examples.droidbb.gcm.GCMIntentService.java
com.arg3.examples.droidbb.gcm.GCMIntentService.java
com.arg3.examples.push.AndroidPushService.java
com.arg3.examples.push.ApplicationListener.java
com.arg3.examples.push.BaseServlet.java
com.arg3.examples.push.BlackberryPushService.java
com.arg3.examples.push.MainModule.java
com.arg3.examples.push.PushServlet.java
com.arg3.examples.push.SendServlet.java
com.arg3.examples.push.ViewServlet.java
com.arg3.examples.push.api.BaseAPIServlet.java
com.arg3.examples.push.api.RegisterDeviceServlet.java
com.arg3.examples.push.dao.DeviceDAO.java
com.arg3.examples.push.enums.DeviceType.java
com.arg3.examples.push.model.Device.java