Skip to content
Snippets Groups Projects
Commit 8b833071 authored by Tadashi G. Takaoka's avatar Tadashi G. Takaoka
Browse files

Fix Settings fragment isn't shown on tablet

Bug: 6341510
Change-Id: I319bb72400995d8385b0b14ef25b164dee3974da
parent 11a40a04
No related branches found
No related tags found
No related merge requests found
......@@ -17,7 +17,6 @@
package com.android.inputmethod.latin;
import android.content.Intent;
import android.os.Bundle;
import android.preference.PreferenceActivity;
public class SettingsActivity extends PreferenceActivity {
......@@ -25,12 +24,7 @@ public class SettingsActivity extends PreferenceActivity {
public Intent getIntent() {
final Intent modIntent = new Intent(super.getIntent());
modIntent.putExtra(EXTRA_SHOW_FRAGMENT, Settings.class.getName());
modIntent.putExtra(EXTRA_NO_HEADERS, true);
return modIntent;
}
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setTitle(R.string.english_ime_settings);
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment