(Android) make Report IME a dialog box instead of a popup alert

This commit is contained in:
ToadKing 2013-01-30 13:56:01 -05:00
parent 9006a80675
commit ab4cef4046

View File

@ -460,7 +460,7 @@ public class RetroArch extends Activity implements
case R.id.report_ime:
String current_ime = Settings.Secure.getString(getContentResolver(), Settings.Secure.DEFAULT_INPUT_METHOD);
Toast.makeText(this, current_ime, Toast.LENGTH_LONG).show();
new AlertDialog.Builder(this).setMessage(current_ime).setNeutralButton("Close", null).show();
return true;
case R.id.retroarch_guide: