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
6ca0b371
Commit
6ca0b371
authored
11 years ago
by
Tadashi G. Takaoka
Committed by
Android (Google) Code Review
11 years ago
Browse files
Options
Downloads
Plain Diff
Merge "Small clean up of KeyboardView.onMeasure"
parents
5c057b32
4f1fdc30
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
java/src/com/android/inputmethod/keyboard/KeyboardView.java
+6
-5
6 additions, 5 deletions
java/src/com/android/inputmethod/keyboard/KeyboardView.java
with
6 additions
and
5 deletions
java/src/com/android/inputmethod/keyboard/KeyboardView.java
+
6
−
5
View file @
6ca0b371
...
@@ -196,13 +196,14 @@ public class KeyboardView extends View {
...
@@ -196,13 +196,14 @@ public class KeyboardView extends View {
@Override
@Override
protected
void
onMeasure
(
final
int
widthMeasureSpec
,
final
int
heightMeasureSpec
)
{
protected
void
onMeasure
(
final
int
widthMeasureSpec
,
final
int
heightMeasureSpec
)
{
if
(
mKeyboard
!=
null
)
{
if
(
mKeyboard
==
null
)
{
// The main keyboard expands to the display width.
final
int
height
=
mKeyboard
.
mOccupiedHeight
+
getPaddingTop
()
+
getPaddingBottom
();
setMeasuredDimension
(
widthMeasureSpec
,
height
);
}
else
{
super
.
onMeasure
(
widthMeasureSpec
,
heightMeasureSpec
);
super
.
onMeasure
(
widthMeasureSpec
,
heightMeasureSpec
);
return
;
}
}
// The main keyboard expands to the entire this {@link KeyboardView}.
final
int
width
=
mKeyboard
.
mOccupiedWidth
+
getPaddingLeft
()
+
getPaddingRight
();
final
int
height
=
mKeyboard
.
mOccupiedHeight
+
getPaddingTop
()
+
getPaddingBottom
();
setMeasuredDimension
(
width
,
height
);
}
}
@Override
@Override
...
...
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