如何制作正方形以查看图库?

时间:2014-12-22 22:52:07

标签: java android android-recyclerview gridlayoutmanager

我正在使用这个metod LINK生成一个带有GridLayoutManager的recyclerview来自动扫描列,但是我没有为holderview做一个方形的虚拟布局,我的意图是使用recyclerview来模仿一个库,

<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="100dp"
android:background="@color/white"
android:orientation="vertical"
android:padding="1dp">


<ImageView
    android:id="@+id/txt"
    android:layout_width="match_parent"
    android:layout_height="100dp"
    android:adjustViewBounds="true"
    android:scaleType="centerCrop"/>

<FrameLayout
    android:layout_width="match_parent"
    android:layout_height="20dp"
    android:layout_gravity="center_horizontal|bottom"  
    android:layout_alignParentBottom="true"
    android:layout_alignParentRight="true"
    android:layout_alignParentEnd="true">

    <TextView
        android:id="@+id/card_text"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:ellipsize="end"
        android:singleLine="true"
        android:text="folder"
        android:textSize="12dp"
        android:textStyle="bold"/>

</FrameLayout>

1 个答案:

答案 0 :(得分:1)

查看this answer,但基本上你可以创建一个自定义的SquareRelativeLayout,然后覆盖onMeasure方法,这样它就像这样:

@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
    // Set a square layout.
    super.onMeasure(widthMeasureSpec, widthMeasureSpec);
}