Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个多行的编辑文本(保存超过 1 行文本)确实我想在 textview 中显示插入到我的数据库中的它的值。PS:我知道是这样的:
android.R.layout.simple_list_item_1, list);
但据我所知,它只显示一行或类似的东西,我对 android 编程有点陌生,所以如果你能简化你的答案,我会更好地理解。而且我不知道它是否也可以在文本视图中显示。
我希望它有效,试试看
<TextView android:id="@+id/txtview" android:layout_height="fill_parent" android:layout_width="wrap_content" android:maxLines="4" android:lines="4" />