0

我试图在 TextView 子类的画布中居中文本。它在 Eclipse 中看起来不错,但在设备中却不行:

蚀:

在此处输入图像描述

设备:

在此处输入图像描述

我想以这种方式使文本居中是有原因的。我没有在这里解释(也没有在代码中),因为它不属于问题。

我已经在使用 dips 和 sps。

编码:

package com.example.test2;

import android.content.Context;
import android.graphics.Canvas;
import android.graphics.Color;
import android.graphics.Paint;
import android.graphics.Rect;
import android.util.AttributeSet;
import android.widget.TextView;

public class CenterTest extends TextView {
    private Paint paint;
    private Paint paint2;
    private Rect bounds;

    public CenterTest(Context context) {
        super(context);
    }

    public CenterTest(Context context, AttributeSet attrs) {
        super(context, attrs);

        paint = new Paint();
        paint2 = new Paint();
        bounds = new Rect();
    }

    public void draw(Canvas canvas) {
        canvas.save();

        int width = getWidth();
        int height = getHeight();

        //draw background
        paint2.setColor(Color.rgb(0, 0, 0));
        paint.setStyle(Paint.Style.FILL);
        canvas.drawRect(0, 0, width, height, paint2);

        //measure text
        paint.setTextSize(getTextSize());
        paint.getTextBounds(getText().toString(), 0, getText().toString().length(), bounds);
        int textWidth =  bounds.width();
        int textHeight =  bounds.height();

        //center before drawing text
        canvas.translate((width / 2) - (textWidth / 2), 0);
        canvas.translate(0, (height / 2) - (textHeight / 2));

        //let TextView.onDraw() do the rest
        super.onDraw(canvas);

        canvas.restore();
    }
}

XML:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="#ffffff" 
    >
    <com.example.test2.CenterTest
        android:layout_width="100dip"
        android:layout_height="30dip"
        android:text="label"
        android:textColor="#ffffff"
        android:singleLine="true"
        android:textSize="12sp"
    />
</RelativeLayout>

也许原因在 TextView.onDraw() 的某个地方,但那是 200 多行代码,我现在没有时间......甚至不确定它是否在那里。

提前致谢!

4

1 回答 1

0

尝试使用 android:gravity="center"

<com.example.test2.CenterTest
    android:layout_width="100dip"
    android:layout_height="30dip"
    android:text="label"
    android:textColor="#ffffff"
    android:singleLine="true"
    android:textSize="12sp"
    android:gravity="center"
/>
于 2012-12-03T00:02:30.163 回答