我从数据库中输入了一个文本,但在该字段中只显示了两行,其余的文本被截断并放置了三个点。
文件.xml
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/svRut"
android:layout_width="match_parent"
android:layout_height="fill_parent"
android:layout_gravity="right" >
<LinearLayout
android:id="@+id/llRut"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center_horizontal"
android:orientation="vertical"
android:padding="5dp" >
<TextView
android:id="@+id/textDescript"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:ellipsize="end"
android:text="@string/mus_textdes" />
</LinearLayout>
</ScrollView>
文件.java
...
textDescript.setText(onExes.getString(onExes.getColumnIndex("exes_desc")));
...