背景画像で 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 のサイズが正しく変更されますが、テキストを小さくすると、大きいときと同じベースラインが維持されます。それは私のテキストを下から切り取り始めます。
私の質問は、サイズ変更中に底が切れないようにベースラインを移動するにはどうすればよいかということです。
前もって感謝します。