我想讓我的TextView垂直滾動。我讀過「Making TextView Scrollable in Android」,但由於我不知道最終設備屏幕的大小,我不知道應該爲最大行設置哪個值。在不知道最大線條的情況下使TextView滾動
有沒有其他的方法,所以它獲得了任何屏幕尺寸的滾動?
我的XML看起來是這樣的:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<ScrollView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:fillViewport="true"
android:layout_weight="1.0">
<TextView
android:id="@+id/consola"
android:layout_width="fill_parent"
android:layout_height="match_parent"/>
</ScrollView>
<EditText
android:id="@+id/comando"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="0.0"/>
<LinearLayout
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="0.0">
<Button
android:text="Conectar"
android:id="@+id/boton_conectar"
android:layout_width="wrap_content"
android:layout_weight="0.5"
android:layout_height="wrap_content">
</Button>
<Button
android:text="Enviar"
android:id="@+id/boton_enviar"
android:layout_width="wrap_content"
android:layout_weight="0.5"
android:layout_height="wrap_content">
</Button>
</LinearLayout>
</LinearLayout>
如果我這樣做,所有組件都可以滾動。我只想要EditText滾動 –
哦,太好了。但我沒有看到你的問題,你想只是滾動EditText,而且'EditText'這個詞在問題描述中不存在,所以這個問題是不正確的。提供更多細節。 你如何想象EditText的滾動? – Dimon
通常ScrollView應該是XML文件中的父窗口小部件節點。所以ScrollView和EditText層次的倒置不能解決問題。 – Dimon