Android setTextSize TextView移动基线并切断文本高度

时间:2012-04-12 23:11:08

标签: android-layout

我正在尝试使用背景图片调整TextView的大小。我有一个扩展TextView类的类,并且正在添加:

    MyCustomTextView tv2 = new MyCustomTextView(this);
    RelativeLayout.LayoutParams lparams = new          
                 RelativeLayout.LayoutParams(LayoutParams.WRAP_CONTENT,  
                                             LayoutParams.WRAP_CONTENT);
    lparams.addRule(RelativeLayout.ALIGN_PARENT_TOP);
    tv2.setLayoutParams(lparams);
    myLayout.addView(v);

我在我的自定义TextView类中进行缩放:

    public float getScaledTextHeight()
    {
        float textHeightDPI = initial_size/windowHeight_inDPI;
        float textOnScreenHeight = textHeightDPI * windowHeight_inDPI;
        float scaledText = textOnScreenHeight * mZoom;
        return scaledText;
    }
    public void setZoomTextHeight(float zoom)
    {
        mZoom = zoom;
        image_size = getScaledTextHeight();

        float mX = ((offset_x + img_offset_x) * mZoom);
        float mY = ((offset_y + img_offset_y) * mZoom);
        RelativeLayout.LayoutParams position1 =
                (android.widget.RelativeLayout.LayoutParams)this.getLayoutParams();

        position1.leftMargin = (int)mX;
        position1.topMargin  = (int)mY;
        position1.bottomMargin  = (int)(window_height - (position1.topMargin + 
                                   image_size + 16));
        this.setLayoutParams(position1);

        setTextSize(TypedValue.COMPLEX_UNIT_PX , image_size);

        invalidate();
    }

最终发生的事情是,使文本更大会正确调整TextView的大小,但使文本更小将保持与大文本相同的基线。它开始从下往上剪切我的文字。

我的问题是,如何移动基线,以便在调整大小时不会切断底部。

提前致谢。

2 个答案:

答案 0 :(得分:2)

通过将缓冲区类型设置为spannable来解决我的(非)移位基线问题。这可以通过两种方式完成。在xml:

中设置缓冲区类型
android:bufferType="spannable"

或使用代码中的相应缓冲区类型调用set text:

setText(getText(),BufferType.SPANNABLE);

通过将BufferType设置为spannable,TextView将相应地自动重置基线。这将是一个非常小的性能成本。

答案 1 :(得分:1)

通过在构造函数中添加来修复它。设置垂直滚动条工作正常。

    this.setVerticalScrollBarEnabled(true);
    this.setMovementMethod(new ScrollingMovementMethod());