Android水平滚动

时间:2014-12-10 07:02:29

标签: java android

对于Android Horizo​​ntal Scrolling ..我可以保持一两列固定吗?其余的一两列其他人将水平滚动...请帮助我.... 我想在Scroll View TableLayout中修复一个水平固定的列(这里... android:id =“@ + id / tblPVPDetailList”)

      <HorizontalScrollView
        android:layout_width="fill_parent"
        android:layout_height="match_parent"
        >

        <LinearLayout
            android:layout_width="fill_parent"
            android:layout_height="match_parent"
            android:orientation="vertical" >

            <TableLayout
                android:id="@+id/tblPVPDetailHeader2"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:layout_marginTop="52dp"
                android:background="@drawable/shape" >
            </TableLayout>

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

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

                    <TableLayout
                        android:id="@+id/tblPVPDetailList"
                        android:layout_width="fill_parent"
                        android:layout_height="wrap_content"
                        android:layout_marginTop="3dp"
                        android:layout_weight="0.27"
                        android:background="@drawable/shape"
                        android:horizontalSpacing="3dip" 
                        >
                    </TableLayout>
                </LinearLayout>
            </ScrollView>
        </LinearLayout>
    </HorizontalScrollView>

0 个答案:

没有答案