我有一个多行的编辑文本(保存了超过1行的文本)确实我想在textview中显示它插入我的数据库中的值。 PS:我知道是这样的:
android.R.layout.simple_list_item_1, list);
但据我所知它只显示一行或类似的内容,我对Android编程有点新意,所以如果你能简化你的答案,我会更好理解。 而且我也不知道它是否也可以在textview中显示出来。
答案 0 :(得分:2)
我希望它有效,试试吧
<TextView
android:id="@+id/txtview"
android:layout_height="fill_parent"
android:layout_width="wrap_content"
android:maxLines="4"
android:lines="4" />