1

我已经展示了条款和条件页面。

协议文本很大,所以我添加了滚动视图,现在它垂直滚动。那没有问题。

但我希望设计能够像 viewpager 一样水平滚动术语文本。

我的代码是,

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/RelativeLayout1"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    >
        <RelativeLayout
            android:id="@+id/RelativeLayout2"
            android:layout_width="fill_parent"
            android:layout_height="50dp"
            android:background="#000000"  >
            <TextView 
                android:id="@+id/Title"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="Terms and Condition"
                android:layout_centerInParent= "true"
             />
        </RelativeLayout>
    <RelativeLayout 
        android:id="@+id/RelativeLayout3"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:layout_below="@+id/RelativeLayout2"
        android:layout_above="@+id/RelativeLayout4"
        android:background="#123456">
            <ScrollView 
                android:id="@+id/scroll_view"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:scrollbars="horizontal"
                >
            <TextView 
                android:id="@+id/lang_list_view"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="@string/terms_condition">
                </TextView>
            </ScrollView>
    </RelativeLayout>
    <RelativeLayout
        android:id="@+id/RelativeLayout4"
        android:layout_width="fill_parent"
        android:layout_height="50dp"
        android:background="#808080"
        android:layout_alignParentBottom="true">
        <TextView 
            android:id="@+id/page_indication"
            android:text="Pages:"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerInParent="true"
            />
        <Button 
            android:id="@+id/cancel"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Cancel"
            android:layout_alignParentLeft="true"
            android:layout_centerVertical="true"
            />
        <Button 
            android:id="@+id/done"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text=" Agree "
            android:layout_alignParentRight="true"
            android:layout_centerVertical="true"
            />
    </RelativeLayout>
</RelativeLayout>

如何水平滚动条款和条件文本并指示有多少页?

我期望的设计是在此处输入图像描述

4

2 回答 2

2

您可以使用Horizo​​ntalScrollView而不是普通的ScrollView. 实现方式类似

于 2012-07-17T06:35:44.933 回答
1

检查这将在用户滚动文本时滚动,仅当文本超出屏幕宽度时

<HorizontalScrollView
    android:id="@+id/ho"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content">


    <TextView 
            android:id="@+id/lang_list_view"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:text="@string/terms_condition">
            </TextView>

</HorizontalScrollView>

将此实施到您的代码中。这将对您有所帮助。您可以在 textview 中添加 android:singleLine="true" 以单行显示文本。

于 2012-07-17T06:52:27.553 回答