Gridviewとその下にframelayoutを持つ次のxmlがあります。 私の要件は、私は、画面をスクロールする場合は上向きに、画面全体がスクロールしなければならないですが、私だけがリストビューのスクロールについては、以下のグリッドビューとそれ以下のリストビューを持つ画面をスクロールできません
はXMLファイルです:
<?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"
android:background="@color/white"
android:focusableInTouchMode="true"
android:paddingBottom="@dimen/activity_vertical_margin">
<ScrollView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/time_card_header"
android:id="@+id/scrollView">
<GridView
android:id="@+id/timecard_grid"
android:layout_width="match_parent"
android:layout_height="130dp"
android:layout_margin="3dp"
android:fitsSystemWindows="true"
android:gravity="center_horizontal"
android:horizontalSpacing="1dp"
android:numColumns="3"
android:stretchMode="columnWidth"
android:verticalSpacing="1dp" />
</ScrollView>
<FrameLayout
android:id="@+id/timecard_reports"
android:layout_width="match_parent"
android:layout_height="fill_parent"
android:background="@color/white"
android:layout_below="@+id/scrollView"/>
</RelativeLayout
私は、画面をスクロールした場合ので、同時にグリッドビューとでframeLayoutスクロールしていますか? – saiki100
私はframelayoutを別々にスクロールしたくありません。上にスクロールすると、すべての画面がgridviewと共にリストビューの最後の項目にスクロールします。 – saiki100
http://www.devexchanges.info/2015/03/combining-gridview-and-listview-in-oneを見てください。 html。これはあなたの問題を解決します – dmp