我对最简单的任务有一个奇怪的问题..只是一个带有文本的TextView。这是一个长串的机智 新线路。问题是textview没有包装内容来调整高度并剪切我的文本。如果我将高度设置为match_parent,我可以看到整个文本,但这不是主意。
修改 我还使用了一个以编程方式添加的自定义shrift。
以下是一些图片:
文字剪切
全文
以下是XML:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:text="@string/one_bedroom_apartment" />
</RelativeLayout>