use bigger images at grid view

This commit is contained in:
tibbi 2022-02-28 23:04:05 +01:00
parent 83fec3db4e
commit 6c96ac12de
2 changed files with 21 additions and 3 deletions

View File

@ -0,0 +1,17 @@
package com.simplemobiletools.filemanager.pro.views
import android.content.Context
import android.util.AttributeSet
import androidx.appcompat.widget.AppCompatImageView
class MySquareImageView : AppCompatImageView {
constructor(context: Context) : super(context)
constructor(context: Context, attrs: AttributeSet) : super(context, attrs)
constructor(context: Context, attrs: AttributeSet, defStyle: Int) : super(context, attrs, defStyle)
override fun onMeasure(widthMeasureSpec: Int, heightMeasureSpec: Int) {
super.onMeasure(widthMeasureSpec, widthMeasureSpec)
}
}

View File

@ -19,11 +19,12 @@
android:layout_height="wrap_content"
android:layout_marginBottom="@dimen/activity_margin">
<ImageView
<com.simplemobiletools.filemanager.pro.views.MySquareImageView
android:id="@+id/item_icon"
android:layout_width="@dimen/grid_view_icon_size"
android:layout_height="@dimen/grid_view_icon_size"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_centerHorizontal="true"
android:padding="@dimen/small_margin"
android:src="@drawable/ic_folder_vector" />
<TextView