gpt4 book ai didi

android - 增加字体大小以适应高度 TextView Android

转载 作者:行者123 更新时间:2023-11-29 01:51:22 31 4
gpt4 key购买 nike

下面是我在堆栈溢出的某个线程中找到的代码,它减小了字体以适合 TextView 中的文本,但我想要减少并增加字体以适合 TextView 中的文本,这件事没有完成然而,搜索了很多,帮助我

public class FontFitTextView extends TextView {

// Attributes
private Paint mTestPaint;
private float defaultTextSize;

public FontFitTextView(Context context) {
super(context);
initialize();
}

public FontFitTextView(Context context, AttributeSet attrs) {
super(context, attrs);
initialize();
}

private void initialize() {
mTestPaint = new Paint();
mTestPaint.set(this.getPaint());
defaultTextSize = getTextSize();
}

/* Re size the font so the specified text fits in the text box
* assuming the text box is the specified width.
*/
private void refitText(String text, int textWidth) {

if (textWidth <= 0 || text.isEmpty())
return;

int targetWidth = textWidth - this.getPaddingLeft() - this.getPaddingRight();

// this is most likely a non-relevant call
if( targetWidth<=2 )
return;

// text already fits with the xml-defined font size?
mTestPaint.set(this.getPaint());
mTestPaint.setTextSize(defaultTextSize);
if(mTestPaint.measureText(text) <= targetWidth) {
this.setTextSize(TypedValue.COMPLEX_UNIT_PX, defaultTextSize);
return;
}

// adjust text size using binary search for efficiency
float hi = defaultTextSize;
float lo = 2;
final float threshold = 0.5f; // How close we have to be
while (hi - lo > threshold) {
float size = (hi + lo) / 2;
mTestPaint.setTextSize(size);
if(mTestPaint.measureText(text) >= targetWidth )
hi = size; // too big
else
lo = size; // too small

}

// Use lo so that we undershoot rather than overshoot
this.setTextSize(TypedValue.COMPLEX_UNIT_PX, lo);
}

@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
super.onMeasure(widthMeasureSpec, heightMeasureSpec);
int parentWidth = MeasureSpec.getSize(widthMeasureSpec);
int height = getMeasuredHeight();
refitText(this.getText().toString(), parentWidth);
this.setMeasuredDimension(parentWidth, height);
}

@Override
protected void onTextChanged(final CharSequence text, final int start,
final int before, final int after) {
refitText(text.toString(), this.getWidth());
}

@Override
protected void onSizeChanged(int w, int h, int oldw, int oldh) {
if (w != oldw || h != oldh) {
refitText(this.getText().toString(), w);
}
}

}

最佳答案

实际上,有一些微不足道的错误。如您所见,在您的代码中检查了 defaultTextSize,因此文本字体不能大于它,而且在对齐循环中需要更正 hi,因为它会阻塞搜索大于 defaultTextSize 的尺寸。

因此,使字体无限制变大的最终代码如下所示:

public class FontFitTextView extends TextView {

// Attributes
private Paint mTestPaint;
/** 'Initial' text size */
private float mDefaultTextSize;

public FontFitTextView(final Context context) {
super(context);
initialize();
}

public FontFitTextView(final Context context, final AttributeSet attrs) {
super(context, attrs);
initialize();
}

private void initialize() {
mTestPaint = new Paint();
mTestPaint.set(this.getPaint());
mDefaultTextSize = getTextSize();
}

/*
* Re size the font so the specified text fits in the text box
* assuming the text box is the specified width.
*/
private void refitText(final String text, final int textWidth) {

if(textWidth <= 0 || text.isEmpty()) {
return;
}

int targetWidth = textWidth - this.getPaddingLeft() - this.getPaddingRight();

// this is most likely a non-relevant call
if(targetWidth <= 2) {
return;
}

// text already fits with the xml-defined font size?
mTestPaint.set(this.getPaint());
mTestPaint.setTextSize(mDefaultTextSize);

// adjust text size using binary search for efficiency
float hi = Math.max(mDefaultTextSize, targetWidth);
float lo = 2;
final float threshold = 0.5f; // How close we have to be

while (hi - lo > threshold) {
float size = (hi + lo) / 2;
mTestPaint.setTextSize(size);
if(mTestPaint.measureText(text) >= targetWidth) {
hi = size; // too big
} else {
lo = size; // too small
}
}

// Use lo so that we undershoot rather than overshoot
this.setTextSize(TypedValue.COMPLEX_UNIT_PX, lo);
}

@Override
protected void onMeasure(final int widthMeasureSpec, final int heightMeasureSpec) {
super.onMeasure(widthMeasureSpec, heightMeasureSpec);
int parentWidth = MeasureSpec.getSize(widthMeasureSpec);
int height = getMeasuredHeight();
refitText(this.getText().toString(), parentWidth);
this.setMeasuredDimension(parentWidth, height);
}

@Override
protected void onTextChanged(final CharSequence text, final int start,
final int before, final int after) {
refitText(text.toString(), this.getWidth());
}

@Override
protected void onSizeChanged(final int w, final int h, final int oldw, final int oldh) {
if (w != oldw || h != oldh) {
refitText(this.getText().toString(), w);
}
}
}

您可以使用以下 xml 对其进行测试:

<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">

<com.example.TestApp.FontFitTextView
android:layout_width="100dp"
android:layout_height="100dp"
android:id="@+id/textView"
android:layout_centerInParent="true"
android:text="This text is to be resized." />

<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:id="@+id/minus_button"
android:text="-10px"
android:padding="20dp" />

<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_toRightOf="@id/minus_button"
android:id="@+id/plus_button"
android:text="+10px"
android:padding="20dp" />
</RelativeLayout>

和 Activity :

public class MyActivity extends Activity {

private static final String TAG = "MyActivity";

TextView mTextView = null;

@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);

// Show the layout with the test view
setContentView(R.layout.main);

mTextView = (TextView) findViewById(R.id.textView);

final Button buttonPlus = (Button) findViewById(R.id.plus_button);

buttonPlus.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(final View v) {
changeTextViewSize(10);
}
});

final Button buttonMinus = (Button) findViewById(R.id.minus_button);

buttonMinus.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(final View v) {
changeTextViewSize(-10);
}
});
}

/**
* Changes text size by needed delta
*
* @param delta in px
*/
private void changeTextViewSize(final int delta) {
final ViewGroup.LayoutParams params = mTextView.getLayoutParams();

params.height += delta;
params.width += delta;

mTextView.setLayoutParams(params);
}
}

关于android - 增加字体大小以适应高度 TextView Android,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17829099/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com