我在我的Android TextView.使用自定义字体TextView.
Typeface tf = Typeface.createFromAsset(getAssets(),
"nunitomedium.ttf");
txt2= (TextView) findViewById(R.id.txt2);
txt2.setTypeface(tf);
但是线条之间的填充没有正确显示。
android:id="@+id/txt2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="@dimen/_10sdp"
android:layout_marginRight="@dimen/_10sdp"
android:layout_marginTop="@dimen/_15sdp"
android:text="You can send emergency blast to friends and family whenever you feel uncomfortable. Once activated, you will be able to send an emergency blast to your safety network within seconds with the pressing of one button."
android:textColor="@color/colorBlack"
android:textSize="@dimen/_15sdp" />
这是我的输出:
我也试过以下代码:
android:includeFontPadding="false"
但仍然是同一个问题。 不确定,但我也尝试使用来自Here的 justifyTextView ,但同样的问题。 以前有人遇到过同样的问题吗?
提前致谢。
编辑:
如果我使用android:lineSpacingExtra第一行有更多的空间,然后其他行。 这是我的代码和输出。
android:id="@+id/txt2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="@dimen/_10sdp"
android:layout_marginRight="@dimen/_10sdp"
android:layout_marginTop="@dimen/_15sdp"
android:lineSpacingExtra="@dimen/_5sdp" <<<<<<<
android:text="You can send emergency blast to friends and family whenever you feel uncomfortable. Once activated, you will be able to send an emergency blast to your safety network within seconds with the pressing of one button."
android:textColor="@color/colorBlack"
android:textSize="@dimen/_15sdp" />