Make all KeyboardRow attributes private

Change-Id: Ifaca6ad5e642964d8c3a77a96a1cd74f363ee996
main
Tadashi G. Takaoka 2013-08-19 11:00:52 +09:00
parent 606a056b53
commit 784416f73b
3 changed files with 8 additions and 4 deletions

View File

@ -234,7 +234,7 @@ public class Key implements Comparable<Key> {
public Key(final Resources res, final KeyboardParams params, final KeyboardRow row,
final XmlPullParser parser) throws XmlPullParserException {
final float horizontalGap = isSpacer() ? 0 : params.mHorizontalGap;
final int rowHeight = row.mRowHeight;
final int rowHeight = row.getRowHeight();
mHeight = rowHeight - params.mVerticalGap;
final TypedArray keyAttr = res.obtainAttributes(Xml.asAttributeSet(parser),

View File

@ -745,7 +745,7 @@ public class KeyboardBuilder<KP extends KeyboardParams> {
mRightEdgeKey = null;
}
addEdgeSpace(mParams.mRightPadding, row);
mCurrentY += row.mRowHeight;
mCurrentY += row.getRowHeight();
mCurrentRow = null;
mTopEdge = false;
}

View File

@ -38,10 +38,10 @@ public final class KeyboardRow {
private static final int KEYWIDTH_FILL_RIGHT = -1;
private final KeyboardParams mParams;
/** The height of this row. */
private final int mRowHeight;
/** Default width of a key in this row. */
private float mDefaultKeyWidth;
/** Default height of a key in this row. */
public final int mRowHeight;
/** Default keyLabelFlags in this row. */
private int mDefaultKeyLabelFlags;
/** Default backgroundType for this row */
@ -74,6 +74,10 @@ public final class KeyboardRow {
mCurrentX = 0.0f;
}
public int getRowHeight() {
return mRowHeight;
}
public float getDefaultKeyWidth() {
return mDefaultKeyWidth;
}