Android Open Source - PNC-Account-Balance Refresh






From Project

Back to project page PNC-Account-Balance.

License

The source code is released under:

MIT License

If you think the Android project PNC-Account-Balance 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 o.fcour.se.pncbal;
/*from   w ww. j a va2s .co  m*/
import o.fcour.se.pncbal.PNCSERVICE.CMD;
import android.app.Activity;
import android.os.Bundle;
import android.util.Log;

public class Refresh extends Activity {

  public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    Log.d("PNC Widget","Refresh onCreate()");
    PNCSERVICE.setApp(getApplication());
    PNCSERVICE.execute(CMD.BAL);
    finish();
  }
}




Java Source Code List

o.fcour.se.pncbal.Config.java
o.fcour.se.pncbal.PNCSERVICE.java
o.fcour.se.pncbal.PNCWidget.java
o.fcour.se.pncbal.Refresh.java