如何使用textview添加滚动视图?

时间:2016-06-09 11:26:45

标签: android android-layout

我有2个textView的布局,它们是水平排列的。 textView用于从sqlite数据库中检索的显示数据,我想在这个布局中添加滚动视图而不改变textView.plese的排列帮助我这是银色的。




1 个答案:

答案 0 :(得分:0)

我想你想要这个。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
              android:orientation="vertical"
              android:layout_width="match_parent"
              android:layout_height="match_parent">

    <ScrollView
        android:layout_width="match_parent"
        android:layout_height="wrap_content">

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="horizontal">

            <TextView
                android:id="@+id/xTv1"
                android:layout_width="0dp"
                android:layout_height="wrap_content"
                android:layout_weight="1"/>

            <TextView
                android:id="@+id/xTv2"
                android:layout_width="0dp"
                android:layout_height="wrap_content"
                android:layout_weight="1"/>

        </LinearLayout>

    </ScrollView>


</LinearLayout>