我可以在TextView中更改字体的高度

时间:2017-03-21 12:05:24

标签: android fonts textview

我正在使用此AutoFitTextView:http://www.andreamaglie.com/android-auto-fit-textview/

它工作正常,所有文字显示,字体调整大小,

enter image description here

问题是我想增加高度,因为有空位,因为你看到边框有空间。

Java代码:

   PercentRelativeLayout layout = (PercentRelativeLayout) findViewById(R.id.temp_layout);


    AutoTxtV txtV = new AutoTxtV(this);
    txtV.setMaxLines(1);
    txtV.setMinTextSize(1);
    txtV.setTextSize(TypedValue.COMPLEX_UNIT_SP,16);
    txtV.setGravity(Gravity.CENTER_VERTICAL);
    txtV.setTextColor(getResources().getColor(R.color.card_name_white));


    txtV.setText("HELLO WORLD HELLO WORLD ABCDEFGHIJKLM");


    layout.addView(txtV);

XML:

<?xml version="1.0" encoding="utf-8"?>
<android.support.percent.PercentRelativeLayout           xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/parent_layout"
android:layout_width="279dp"
android:layout_height="405dp"
android:background="@drawable/background">



<android.support.percent.PercentRelativeLayout
    android:id="@+id/temp_layout"
    android:orientation="horizontal"
    app:layout_heightPercent="7.5%"
    app:layout_marginLeftPercent="7.3%"
    app:layout_marginTopPercent="4%"
    app:layout_widthPercent="74.5%">
</android.support.percent.PercentRelativeLayout>
</android.support.percent.PercentRelativeLayout>

有没有办法增加身高,可能会改变字体类型?

更新(更多解释):

问题是我想要字体&#34; height&#34;不增加&#34;尺寸&#34;因为如果我增加大小,文本将不会全部显示。

AutoFitTextView,调整文字大小&#34; (宽度和高度)因为&#34;宽度&#34;容器还不够,我想减少宽度&#34;因为宽度只是问题。

1 个答案:

答案 0 :(得分:0)

这两个解决了我的问题:

txtV.setScaleY() - 更改高度

txt.setTextScaleX()