If you think the Android project android-class listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Java Source Code
/*
* Copyright (C) 2012 The Android Open Source Project
*//www.java2s.com
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License
*/package com.android.deskclock;
import android.content.Context;
import android.graphics.Typeface;
import android.util.AttributeSet;
import android.widget.TextView;
/**
* Displays text with no padding at the top.
*/publicclass ZeroTopPaddingTextView extends TextView {
privatestaticfinalfloat NORMAL_FONT_PADDING_RATIO = 0.328f;
// the bold fontface has less empty space on the top
privatestaticfinalfloat BOLD_FONT_PADDING_RATIO = 0.208f;
privatestaticfinalfloat NORMAL_FONT_BOTTOM_PADDING_RATIO = 0.25f;
// the bold fontface has less empty space on the top
privatestaticfinalfloat BOLD_FONT_BOTTOM_PADDING_RATIO = 0.208f;
privatestaticfinal Typeface SAN_SERIF_BOLD = Typeface.create("san-serif", Typeface.BOLD);
privateint mPaddingRight = 0;
public ZeroTopPaddingTextView(Context context) {
this(context, null);
}
public ZeroTopPaddingTextView(Context context, AttributeSet attrs) {
this(context, attrs, 0);
}
public ZeroTopPaddingTextView(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
setIncludeFontPadding(false);
updatePadding();
}
publicvoid updatePadding() {
float paddingRatio = NORMAL_FONT_PADDING_RATIO;
float bottomPaddingRatio = NORMAL_FONT_BOTTOM_PADDING_RATIO;
if (getTypeface().equals(SAN_SERIF_BOLD)) {
paddingRatio = BOLD_FONT_PADDING_RATIO;
bottomPaddingRatio = BOLD_FONT_BOTTOM_PADDING_RATIO;
}
// no need to scale by display density because getTextSize() already returns the font
// height in px
setPadding(0, (int) (-paddingRatio * getTextSize()), mPaddingRight,
(int) (-bottomPaddingRatio * getTextSize()));
}
publicvoid setPaddingRight(int padding) {
mPaddingRight = padding;
updatePadding();
}
}