diff options
author | sjtufs <[email protected]> | 2013-08-25 15:56:12 +0800 |
---|---|---|
committer | sjtufs <[email protected]> | 2013-08-25 15:56:12 +0800 |
commit | 112bf684913bd3f39ef60f84efc38130af47e4b2 (patch) | |
tree | 3956666face8bf78c6280eb66f56bc62b0547f77 /src | |
parent | ac7633d8149a28af288ac0b850850cef9b13c151 (diff) |
Alpha version & fix name
Diffstat (limited to 'src')
-rw-r--r-- | src/com/macaroon/piztor/Settings.java | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/com/macaroon/piztor/Settings.java b/src/com/macaroon/piztor/Settings.java new file mode 100644 index 0000000..292a112 --- /dev/null +++ b/src/com/macaroon/piztor/Settings.java @@ -0,0 +1,22 @@ +package com.macaroon.piztor; + +import android.os.Bundle; +import android.app.Activity; +import android.view.Menu; + +public class Settings extends Activity { + + @Override + protected void onCreate(Bundle savedInstanceState) { + super.onCreate(savedInstanceState); + setContentView(R.layout.activity_settings); + } + + @Override + public boolean onCreateOptionsMenu(Menu menu) { + // Inflate the menu; this adds items to the action bar if it is present. + getMenuInflater().inflate(R.menu.setting, menu); + return true; + } + +} |