1,Android布局上面一个FrameLayout,下面一个Gridview,如何让Gridview滚动的时候可以全屏滚动。
2,布局代码
<?xml version="1.0" encoding="UTF-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/anchor"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/grey_white"
android:orientation="vertical" >
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="45.0dip"
android:background="@drawable/top_bg" >
<TextView
android:id="@+id/activity_title"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:gravity="center"
android:text="最新上映"
android:textColor="@color/white"
android:textSize="17.0dip" />
</LinearLayout>
<FrameLayout
android:id="@+id/linearlayout_images_slide"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<android.support.v4.view.ViewPager
android:id="@+id/image_slide_page"
android:layout_width="fill_parent"
android:layout_height="150dip"
android:focusable="true" />
<RelativeLayout
android:id="@+id/layout_title_text"
style="@style/Transparent"
android:layout_width="match_parent"
android:layout_height="30dp"
android:layout_gravity="bottom"
android:background="#55000000" >
<RelativeLayout
android:id="@+id/layout_bar_image"
android:layout_width="match_parent"
android:layout_height="1dip"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:background="@drawable/image_page_bg" />
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:orientation="horizontal" >
<TextView
android:id="@+id/tvSlideTitle"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_marginLeft="10dp"
android:gravity="center_vertical"
android:textColor="@android:color/white"
android:textSize="12sp" />
<LinearLayout
android:id="@+id/layout_circle_images"
android:layout_width="wrap_content"
android:layout_height="15sp"
android:layout_alignParentRight="true"
android:layout_marginRight="10dp"
android:layout_marginTop="10dp"
android:layout_toRightOf="@id/tvSlideTitle"
android:gravity="right|center"
android:orientation="horizontal" />
</RelativeLayout>
</RelativeLayout>
</FrameLayout>
<GridView
android:id="@+id/anchor_view"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/title_bar_text"
android:layout_marginLeft="0dip"
android:layout_marginRight="5dip"
android:cacheColorHint="#00000000"
android:columnWidth="2dip"
android:listSelector="#00000000"
android:numColumns="3" >
</GridView>
</LinearLayout>
3,图片
如图1,是没有拖动的图片,下面的图是拖动的效果。拖动的时候上面的幻灯不会动,所以只能拖动下面一点距离。
请问怎么样才可以下面的gridview往上拖动的时候。上面的幻灯也会向上滚动。
謝謝各位的解答,最後使用了為gridview增加一個headview的方法解決了。
具體方法請參閱此連結:http://blog.csdn.net/zhzhyang0313/articl...
recyclerview 的header不知道能不能解決,可以試試看
http://www.open-open.com/lib/view/open1434422599926.html
1。其實整個介面可以用recycleView+gridLayoutManager來實現,這樣就直接可以滑動啦。
2.如果就是你這樣的佈局,你可以在gridView的ontouchEvent裡面用Scroller類來實現對上面的滑動
首先你得改佈局,當前這個佈局是無法實現你的需求的。可以考慮在ScrollView中嵌套GridView,會是相對簡單的實作思路,這個方案你需要解決兩個滾動view的衝突問題,問題的解決也相對容易一些,可以參考這個辦法ScrollView嵌套GridView衝突解決
方案1:用一個ListView來實現,頂上的幻燈片就是HeaderView,listview item佈局就用兩個橫向的item,禁用onItemClick,手動對每個item加點擊事件。
方案2:用recyclerView來實現,有不少開源元件可以很方便的給recyclerview添加headerview https://github.com/search?utf8=%E2%9C%93&q=header+footer+recyclerview,然後用gridLayoutManager來實現就好了。
不建議用scrollview巢狀gridview來實現,這和scrollview+linearlayout無異,沒有item復用的功能。