您好我正在尝试将文本显示为在终端或cmd中显示。我的意思是一个文本窗口,每个输入都会生成一个新行,然后显示TextView
的底线,屏幕上总会有一定数量的行。
这听起来很容易,但是现在我开始了,我不知道该怎么做。
我尝试将TextView
放在ScrollView
这样的
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
android:weightSum="100" >
<ScrollView android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1">
<TextView android:id="@+id/tv1"
android:layout_width="wrap_content"
android:minLines="11"
android:maxLines="11"
android:layout_height="wrap_content"/>
</ScrollView>
<EditText
android:id="@+id/editText1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="10" >
<requestFocus />
</EditText>
<Button
android:id="@+id/button1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="10"
android:onClick="buttonclick"
android:text="Button" />
</LinearLayout>
然后
sss=et1.getText().toString();
tv1.append("\n"+sss);
添加新行
这一切都有效,但我真的不知道如何让TextView
走到最底层,现在它只是在我达到最大行数时切断。
我绝对不希望有人为我编写程序。我在这里学习
谢谢你的时间!
答案 0 :(得分:7)
在附加文字后,在fullScroll(View.FOCUS_DOWN)
上致电ScrollView
。