对于Android Horizontal 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>