我正在尝试实现TextView的子类,它打印垂直旋转的文本,但是我在从XML布局指定的颜色中打印文本时遇到了麻烦。类代码是:
import android.content.Context;
import android.graphics.Canvas;
import android.graphics.Rect;
import android.text.TextPaint;
import android.util.AttributeSet;
import android.widget.TextView;
public class VerticalTextView extends TextView {
private Rect bounds = new Rect();
private TextPaint textPaint;
public VerticalTextView(Context context) {
super(context);
}
public VerticalTextView(Context context, AttributeSet attrs) {
super(context, attrs);
}
@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
textPaint = getPaint();
textPaint.getTextBounds((String) getText(), 0, getText().length(), bounds);
setMeasuredDimension((int) (bounds.height() + textPaint.descent()), bounds.width());
}
@Override
protected void onDraw(Canvas canvas) {
canvas.rotate(-90, bounds.width(), 0);
canvas.drawText((String) getText(), 0, -bounds.width() + bounds.height(), textPaint);
}
}
我不需要此视图的自定义属性,因此我不会声明它的样式。
我通过此布局在我的活动中使用此视图:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="fill_parent"
android:layout_height="fill_parent">
<com.verticaltextview.VerticalTextView
android:layout_width="wrap_content" android:layout_height="wrap_content"
android:text="Hello World" android:textColor="#ff0000ff"
android:textStyle="italic" />
</LinearLayout>
正如您所看到的,我同时指定文本颜色(蓝色)和文本样式(斜体),但仅应用样式,因为文本以黑色打印。如果在onDraw()
方法中我通过执行textPaint.setColor(0xff00ff00)
对颜色进行硬编码,则文本会以彩色正确打印。
连连呢?谢谢;)
答案 0 :(得分:2)
您必须将VerticalTextView
的构造函数更改为以下内容:
private int col = 0xFFFFFFFF;
public VerticalTextView(Context context, AttributeSet attrs)
{
super(context, attrs); // was missing a parent
col = getCurrentTextColor();
}
然后添加
textPaint.setColor(col);
到您的onDraw()
功能。
希望这有帮助。
答案 1 :(得分:0)
我认为你可以获得颜色:
**public VerticalTextView(Context context, AttributeSet attrs) {
super(context, attrs);
}**
然后将此颜色设置为textPaint。