我已经展示了条款和条件页面。
协议文本很大,所以我添加了滚动视图,现在它垂直滚动。那没有问题。
但我希望设计能够像 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>
如何水平滚动条款和条件文本并指示有多少页?
我期望的设计是