在recyclerview

时间:2016-01-06 01:52:25

标签: android android-layout android-recyclerview

我正在努力实现与Google Play商店应用类似的外观


enter image description here




现在我得到了这个

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <ImageView
        android:id="@+id/image"
        android:layout_width="match_parent"
        android:layout_height="200dp" />

    <android.support.v7.widget.RecyclerView
        android:id="@+id/recyclerview"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:clipToPadding="false"
        android:paddingTop="200dp" />

</FrameLayout>


看起来很棒,但由于Recyclerview与ImageView重叠,因此不再可点击。我正在寻找解决方案。

1 个答案:

答案 0 :(得分:0)

你可以在android studio中使用滚动活动模板,它具有与你想要做的类似的行为。 并将ImageView放入AppBarLayout 和任何其他视图一样处理点击事件。

这不会给你谷歌播放应用程序的确切行为,但如果它是这样做的简单方法。 如果你想要一个确切的行为我知道一个开源库这样做让我知道你是否想要它,我会搜索它。

enter image description here