Back to project page RobitDroid.
The source code is released under:
Copyright (c) 2011 Kenny Meyer Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Softwa...
If you think the Android project RobitDroid 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.robitdroid; // w ww. j av a 2 s .c om import android.app.Activity; import android.os.Bundle; /** * Author: Kenny Meyer <knny.myer@gmail.com> * Date: 11/11/11 * Time: 9:33 AM */ public class AboutScreen extends Activity { @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.about_screen); } }