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 ww. jav a 2s . co m import android.app.Activity; import android.content.Intent; import android.os.Bundle; import android.view.View; /** * Created by rembam on 13.07.14. */ public class MoveVehiclesScreen extends Activity { public static String baseKey = "MoveVehiclesScreen"; protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.move_vehicles); ScreenDB.setFinishedDate(baseKey, getApplicationContext()); } public void done(View v) { finish(); } }