scrollview在完全滚动查看意图下的表(视图)

时间:2014-10-17 15:00:54

标签: android android-intent xamarin.android scrollview tableview

    <?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity">
    <ScrollView
        android:layout_width="fill_parent"
        android:layout_height="wrap_content">
        <LinearLayout
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:orientation="vertical">
            <TextView
                android:text="Mesaj Başlığı"
                android:padding="20dp"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:id="@+id/textExtendHeader"
                android:layout_marginBottom="2dp"
                android:textStyle="bold"
                android:textSize="22sp" />
            <FrameLayout
                android:layout_width="match_parent"
                android:layout_height="400dp"
                android:layout_x="0dp"
                android:layout_y="0dp"
                android:layout_gravity="center_horizontal|top">

                <TableRow
                    android:layout_width="fill_parent"
                    android:layout_height="fill_parent"
                    android:layout_alignParentTop="true"
                    android:layout_centerHorizontal="true"
                    android:layout_marginTop="000dp">
                    <ScrollView
                        android:id="@+id/scrollView1"
                        android:layout_width="match_parent"
                        android:layout_height="match_parent"
                        android:fillViewport="true"
                        android:gravity="top">
                        <ListView
                            android:id="@+id/ListC"
                            android:layout_width="fill_parent"
                            android:layout_height="fill_parent"
                            android:cacheColorHint="#FFDAFF7F" />
                    </ScrollView>
                </TableRow>
            </FrameLayout>
        </LinearLayout>
    </ScrollView>
</RelativeLayout>

我有两个scrollview元素; 滚动和第二个滚动视图元素是一个tableview,当我尝试scrollview表,只感觉整个页面滚动时,第一个整页向上和向上。 是否有一个技巧来滚动单独的表视图和页面?

0 个答案:

没有答案