]> rtime.felk.cvut.cz Git - orte.git/blobdiff - orte/contrib/shape_android/src/org/ocera/orte/shape_android/HelpActivity.java
Simplified approach to write application.
[orte.git] / orte / contrib / shape_android / src / org / ocera / orte / shape_android / HelpActivity.java
diff --git a/orte/contrib/shape_android/src/org/ocera/orte/shape_android/HelpActivity.java b/orte/contrib/shape_android/src/org/ocera/orte/shape_android/HelpActivity.java
new file mode 100644 (file)
index 0000000..24018e2
--- /dev/null
@@ -0,0 +1,75 @@
+/**
+ * 
+ *     This file is part of shape_android.
+ *
+ *  shape_android is free software: you can redistribute it and/or modify
+ *  it under the terms of the GNU General Public License as published by
+ *  the Free Software Foundation, either version 3 of the License, or
+ *  (at your option) any later version.
+ *
+ *  shape_android is distributed in the hope that it will be useful,
+ *  but WITHOUT ANY WARRANTY; without even the implied warranty of
+ *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ *  GNU General Public License for more details.
+ *
+ *  You should have received a copy of the GNU General Public License
+ *  along with shape_android.  If not, see <http://www.gnu.org/licenses/>.
+ *
+ */
+package org.ocera.orte.shape_android;
+
+import android.app.Activity;
+import android.os.Bundle;
+import android.view.Menu;
+import android.view.MenuItem;
+
+/**
+ * This activity shows help.
+ * 
+ * @author jiri hubacek <jiri.hubacek@gmail.com>
+ * @version %I, %G
+ * @since 1.2
+ */
+public class HelpActivity extends Activity
+{
+       /**
+        * Setting up workspace.
+        * 
+        * @since 1.2
+        */
+       @Override
+       protected void onCreate(Bundle savedInstanceState) {
+               super.onCreate(savedInstanceState);
+               setContentView(R.layout.activity_help);
+       }
+
+
+       /**
+        * There is nothing in the menu now.
+        * 
+        * @since 1.2
+        */
+       @Override
+       public boolean onCreateOptionsMenu(Menu menu) {
+               // Inflate the menu; this adds items to the action bar if it is present.
+               getMenuInflater().inflate(R.menu.help, menu);
+               return true;
+       }
+
+       /**
+        * Nothing happens now when menu is selected.
+        * 
+        * @since 1.2
+        */
+       @Override
+       public boolean onOptionsItemSelected(MenuItem item) {
+               // Handle action bar item clicks here. The action bar will
+               // automatically handle clicks on the Home/Up button, so long
+               // as you specify a parent activity in AndroidManifest.xml.
+               int id = item.getItemId();
+               if (id == R.id.action_settings) {
+                       return true;
+               }
+               return super.onOptionsItemSelected(item);
+       }
+}