Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
LatinIME
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
keyboard
LatinIME
Commits
a75ada50
Commit
a75ada50
authored
12 years ago
by
Tadashi G. Takaoka
Committed by
Android Git Automerger
12 years ago
Browse files
Options
Downloads
Plain Diff
am
3268a44e
: am
a5067333
: Disable the header list of DebugSettingsActivity
* commit '
3268a44e
': Disable the header list of DebugSettingsActivity
parents
ec981aa9
3268a44e
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
java/src/com/android/inputmethod/latin/DebugSettingsActivity.java
+7
-4
7 additions, 4 deletions
.../com/android/inputmethod/latin/DebugSettingsActivity.java
java/src/com/android/inputmethod/latin/SettingsActivity.java
+1
-3
1 addition, 3 deletions
java/src/com/android/inputmethod/latin/SettingsActivity.java
with
8 additions
and
7 deletions
java/src/com/android/inputmethod/latin/DebugSettingsActivity.java
+
7
−
4
View file @
a75ada50
...
...
@@ -21,15 +21,18 @@ import android.os.Bundle;
import
android.preference.PreferenceActivity
;
public
final
class
DebugSettingsActivity
extends
PreferenceActivity
{
private
static
final
String
DEFAULT_FRAGMENT
=
DebugSettings
.
class
.
getName
();
@Override
public
Intent
getIntent
()
{
final
Intent
modIntent
=
new
Intent
(
super
.
getIntent
());
modIntent
.
putExtra
(
EXTRA_SHOW_FRAGMENT
,
DebugSettings
.
class
.
getName
());
return
modIntent
;
final
Intent
intent
=
super
.
getIntent
();
intent
.
putExtra
(
EXTRA_SHOW_FRAGMENT
,
DEFAULT_FRAGMENT
);
intent
.
putExtra
(
EXTRA_NO_HEADERS
,
true
);
return
intent
;
}
@Override
protected
void
onCreate
(
Bundle
savedInstanceState
)
{
protected
void
onCreate
(
final
Bundle
savedInstanceState
)
{
super
.
onCreate
(
savedInstanceState
);
setTitle
(
R
.
string
.
english_ime_debug_settings
);
}
...
...
This diff is collapsed.
Click to expand it.
java/src/com/android/inputmethod/latin/SettingsActivity.java
+
1
−
3
View file @
a75ada50
...
...
@@ -25,9 +25,7 @@ public final class SettingsActivity extends PreferenceActivity {
@Override
public
Intent
getIntent
()
{
final
Intent
intent
=
super
.
getIntent
();
if
(!
intent
.
hasExtra
(
EXTRA_SHOW_FRAGMENT
))
{
intent
.
putExtra
(
EXTRA_SHOW_FRAGMENT
,
DEFAULT_FRAGMENT
);
}
intent
.
putExtra
(
EXTRA_SHOW_FRAGMENT
,
DEFAULT_FRAGMENT
);
intent
.
putExtra
(
EXTRA_NO_HEADERS
,
true
);
return
intent
;
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment