Back to project page PNC-Account-Balance.
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.
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(); } }