12

AndroidのPinterestアプリのようなグリッドを作りたいです。

私は拡張を始めましたAdapterView<ListAdapter>が、多くのことを機能させることができません(たとえば、オーバースクロール効果)。そのため、拡張するという考えを放棄した後AbsListView、今では、を拡張してメソッドListViewをオーバーライドする方がよいと考え始めていますlayoutChildren()

どう思いますか?

ありがとう

4

3 に答える 3

6

AndroidのStaggeredGridViewをコピーして更新することでこれを解決しました。https://github.com/maurycyw/StaggeredGridView . 探している効果を作成するのに最適なようです。これの前に、現在実験的な StaggeredGridView を見るまで、Android のソースを別のライブラリ (私が作業していた) にコピーするといううさぎの穴を掘り下げました。古い「BrickView」ライブラリ プロジェクトよりもはるかに単純なので、置き換えました。

于 2012-12-16T06:22:56.190 に答える
0

これは、既存の recyclerview とそのアダプターを少し変更することで実現できます。

行うべき変更は次のとおりです。 1.In you Activity / Frgament

uploadMediaAdapter = new UploadMediaAdapter(getActivity(),mediaArrayList);    
rv_uploaded.setAdapter(uploadMediaAdapter);
int spanCount = 2;
rv_uploaded.setLayoutManager(new StaggeredGridLayoutManager(spanCount, StaggeredGridLayoutManager.VERTICAL));

2. Recyclerview リストの項目は次のとおりです。

<android.support.v7.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_margin="@dimen/dim_5"
    app:cardCornerRadius="@dimen/dim_5"
    app:cardUseCompatPadding="true"
    android:clipToPadding="true"
    >

    <FrameLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical"
        >

        <android.support.v7.widget.AppCompatImageView
            android:id="@+id/img_prev_photo"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:scaleType="fitXY"
            android:adjustViewBounds="true"
            />

        <android.support.v7.widget.AppCompatTextView
            android:id="@+id/txt_progress_date"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="8th August 2019"
            android:textSize="@dimen/text_size_17"
            android:textStyle="bold"
            android:layout_gravity="bottom|center_horizontal"
            android:textColor="@color/color_white"
            />

    </FrameLayout>


</android.support.v7.widget.CardView>

これを行うことで、あなたが探しているものを達成することができます!

于 2019-12-26T05:20:17.760 に答える