2016-06-21 10 views
0

私は、この全部のscrollview/textviewのことを頭痛のように思っていました。私は、Textviewを含むScrollviewを持って、私はそれの下に別のtextview(ステータス)があります。下のテキストビューを隠しているScrollview

  1. スクロール/テキスト、一度長い結果のテキストを含む、私の画面の下に落下し、完全に私の一番下に常に1行であることを想定している私の「状態」のTextViewを、非表示になります画面。

  2. 私は、結果のテキストが長くなるように、私は新しい行があるとき、スクロールバーが自動的に下にスクロールするようにしたいと思います。私は重力= 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> 

答えて

0

それはあなた

<?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:id="@+id/scrollResult" 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent" 
    android:layout_above="@+id/status" 
    android:fillViewport="false"> 

    <TextView 
     android:id="@+id/textResult" 
     android:layout_width="fill_parent" 
     android:layout_height="wrap_content" 
     android:background="@drawable/back" 
     android:textIsSelectable="true" /> 
</ScrollView> 

<TextView 
    android:id="@+id/status" 
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" 
    android:layout_alignParentBottom="true" 
    android:editable="false" 
    android:gravity="bottom" 
    android:maxHeight="20dp" 

    android:maxLines="1" 
    android:minHeight="20dp" 
    android:minLines="1" 
    android:singleLine="true" 
    android:text="" 
    android:textSize="12sp" /> 

</RelativeLayout> 
に助けがある可能性がありますしてみてください
関連する問題