如何实现多个水平滚动视图?

时间:2015-09-01 11:25:14

标签: android android-layout

我正在开展一个项目。我正在使用两个表格布局。在第一个表格布局中,我动态创建多个按钮,而另一个表格布局我动态地创建编辑文本字段。我的xml代码是:

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/verticalScroll"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:scrollbars="vertical" >

<LinearLayout
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="@android:color/transparent"
    android:orientation="vertical" >

    <HorizontalScrollView
        android:id="@+id/navigationScroll"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:fadeScrollbars="true"
        android:fitsSystemWindows="true"
        android:scrollbarSize="10dip"
        android:scrollbarStyle="insideInset" >

        <TableLayout
            android:id="@+id/navigationTableOnMainActivity"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:stretchColumns="*" >
        </TableLayout>
    </HorizontalScrollView>

    <HorizontalScrollView
        android:id="@+id/xmlTableScroll"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:fadeScrollbars="true"
        android:fitsSystemWindows="true"
        android:scrollbarSize="10dip"
        android:scrollbarStyle="insideInset" >

        <TableLayout
            android:id="@+id/main_table"
            android:layout_width="wrap_content"
            android:layout_height="fill_parent"
            android:stretchColumns="*" >
        </TableLayout>
    </HorizontalScrollView>
</LinearLayout>

有可能这样做吗?如果是那么如何设置第一个表布局(@ + id / navigationTableOnMainActivity)高于sencond表布局(@ + id / main_table)

0 个答案:

没有答案