Back to project page bumper.
The source code is released under:
MIT License
If you think the Android project bumper 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 com.varwise.bumper; //w w w. j a v a 2 s . c om import android.app.Activity; import android.os.Bundle; import android.view.View; import android.widget.Spinner; import android.widget.Toast; public class InsuranceScreen extends Activity { public static String baseKey = "InsuranceScreen"; Spinner spinner; protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.roadsite_assistance); } public void callInsurence(View v) { ScreenDB.setFinishedDate(baseKey, getApplicationContext()); Toast.makeText(getApplicationContext(), "Please wait, calling... ", Toast.LENGTH_LONG).show(); } public void onNo(View v) { ScreenDB.setFinishedDate(baseKey, getApplicationContext()); finish(); } }