Back to project page droid-counter.
The source code is released under:
MIT License
If you think the Android project droid-counter 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 cs.aaclark.droidcounter; // w w w. j ava2 s. com import android.app.Activity; import android.content.Intent; public class EditCounterActivity extends Activity { protected void onCreate(){ Intent returnIntent = new Intent(); returnIntent.putExtra("result",0); setResult(RESULT_OK,returnIntent); finish(); } }