diff --git a/android/phoenix/AndroidManifest.xml b/android/phoenix/AndroidManifest.xml index 4c91b2e1ea..f6166bedd4 100644 --- a/android/phoenix/AndroidManifest.xml +++ b/android/phoenix/AndroidManifest.xml @@ -1,7 +1,7 @@ + android:versionCode="20" + android:versionName="0.9.9.5" > - + + + + - - - - - + diff --git a/android/phoenix/res/menu/context_menu.xml b/android/phoenix/res/menu/context_menu.xml index c916dc89ce..4edd379631 100644 --- a/android/phoenix/res/menu/context_menu.xml +++ b/android/phoenix/res/menu/context_menu.xml @@ -1,12 +1,7 @@ - - - - - diff --git a/android/phoenix/res/menu/directory_list.xml b/android/phoenix/res/menu/directory_list.xml index d39e614c9d..3b02ee8a45 100644 --- a/android/phoenix/res/menu/directory_list.xml +++ b/android/phoenix/res/menu/directory_list.xml @@ -1,7 +1,7 @@ diff --git a/android/phoenix/res/values/strings.xml b/android/phoenix/res/values/strings.xml index fcfc178403..e37ebf04c3 100644 --- a/android/phoenix/res/values/strings.xml +++ b/android/phoenix/res/values/strings.xml @@ -3,18 +3,8 @@ RetroArch Input Method File type icon - Video Settings - Settings - Audio Settings - Input Settings - General Settings - Settings - RetroArch Guide - Cores Guide - Overlay How-to Guide Select the button to use Unbind - Help Report IME Report Refresh Rate Detect diff --git a/android/phoenix/res/xml/prefs.xml b/android/phoenix/res/xml/prefs.xml index ccb8cca9b8..1d7eab953f 100644 --- a/android/phoenix/res/xml/prefs.xml +++ b/android/phoenix/res/xml/prefs.xml @@ -1,79 +1,13 @@ + android:title="RetroArch 0.9.9.5 - Main Menu" > - - - - - - - - - - - - - - - - - - - - - - - - - + + - - - - - - - - - - + - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/android/phoenix/src/org/retroarch/browser/SettingsActivity.java b/android/phoenix/src/org/retroarch/browser/MainMenuActivity.java similarity index 89% rename from android/phoenix/src/org/retroarch/browser/SettingsActivity.java rename to android/phoenix/src/org/retroarch/browser/MainMenuActivity.java index aba497a593..c78386faec 100644 --- a/android/phoenix/src/org/retroarch/browser/SettingsActivity.java +++ b/android/phoenix/src/org/retroarch/browser/MainMenuActivity.java @@ -7,7 +7,7 @@ import android.os.Bundle; import android.preference.PreferenceActivity; import android.preference.PreferenceManager; -public class SettingsActivity extends PreferenceActivity { +public class MainMenuActivity extends PreferenceActivity { @SuppressWarnings("deprecation") @Override public void onCreate(Bundle savedInstanceState) { diff --git a/android/phoenix/src/org/retroarch/browser/RetroArch.java b/android/phoenix/src/org/retroarch/browser/RetroArch.java index 51c02b52d7..dc18fd4be6 100644 --- a/android/phoenix/src/org/retroarch/browser/RetroArch.java +++ b/android/phoenix/src/org/retroarch/browser/RetroArch.java @@ -11,7 +11,6 @@ import android.annotation.TargetApi; import android.app.*; import android.media.AudioManager; import android.media.AudioTrack; -import android.net.Uri; import android.os.*; import android.preference.PreferenceManager; import android.provider.Settings; @@ -609,16 +608,6 @@ public class RetroArch extends Activity implements InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE); imm.showInputMethodPicker(); return true; - - case R.id.rarch_settings: - Intent rset = new Intent(this, SettingsActivity.class); - startActivity(rset); - return true; - case R.id.help: - Intent help = new Intent(this, HelpActivity.class); - startActivity(help); - return true; - case R.id.report_ime: String current_ime = Settings.Secure.getString(getContentResolver(), Settings.Secure.DEFAULT_INPUT_METHOD); new AlertDialog.Builder(this).setMessage(current_ime).setNeutralButton("Close", null).show(); @@ -627,21 +616,6 @@ public class RetroArch extends Activity implements String current_rate = "Screen Refresh Rate: " + Double.valueOf(report_refreshrate).toString(); new AlertDialog.Builder(this).setMessage(current_rate).setNeutralButton("Close", null).show(); return true; - - case R.id.retroarch_guide: - Intent rguide = new Intent(Intent.ACTION_VIEW, Uri.parse("http://www.libretro.com/documents/retroarch-manual.pdf")); - startActivity(rguide); - return true; - - case R.id.cores_guide: - Intent cguide = new Intent(Intent.ACTION_VIEW, Uri.parse("http://www.libretro.com/documents/retroarch-cores-manual.pdf")); - startActivity(cguide); - return true; - - case R.id.overlay_guide: - Intent mguide = new Intent(Intent.ACTION_VIEW, Uri.parse("http://www.libretro.com/documents/overlay.pdf")); - startActivity(mguide); - return true; case R.id.optimal_settings_device: detectDevice(true); return true;