0
私は、この全部のscrollview/textviewのことを頭痛のように思っていました。私は、Textviewを含むScrollviewを持って、私はそれの下に別のtextview(ステータス)があります。下のテキストビューを隠しているScrollview
スクロール/テキスト、一度長い結果のテキストを含む、私の画面の下に落下し、完全に私の一番下に常に1行であることを想定している私の「状態」のTextViewを、非表示になります画面。
私は、結果のテキストが長くなるように、私は新しい行があるとき、スクロールバーが自動的に下にスクロールするようにしたいと思います。私は重力= bottomを "textResult" textviewに追加しようとしましたが、動作しません - テキスト結果で新しい行(画面の一番下にある)があってもスクロールバーが動かない。
- どうすればこの問題を解決できますか?本当にありがとう!
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#ffffff">
<ScrollView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:id="@+id/scrollResult"
android:fillViewport="false"
android:layout_alignParentBottom="false">
<TextView
android:id="@+id/textResult"
android:background="@drawable/back"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textIsSelectable="true"
/>
</ScrollView>
<TextView
android:id="@+id/status"
android:layout_width="fill_parent"
android:editable="false"
android:textSize="12sp"
android:text=""
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_below="@+id/scrollResult"
android:gravity="bottom"
android:minLines="1"
android:maxLines="1"
android:singleLine="true"
android:minHeight="20dp"
android:maxHeight="20dp" />
</RelativeLayout>