我正在创建一个应用程序,我想要维护固定宽度的卡片。那么如何根据设备宽度动态填充cardviews。
对于Ex。对于普通尺寸的手机,应该有两列卡片,对于大尺寸屏幕,当两个手机中的应用程序处于移植模式时,有三列卡片。
答案 0 :(得分:0)
得到解决方案,
需要使用GridView:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="app.appmax.fest1.Dialogs.CustomGridView.MenuHome">
<GridView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:columnWidth="100dp"
android:layout_marginLeft="8dp"
android:layout_marginTop="8dp"
android:stretchMode="columnWidth"
android:id="@+id/gridview1"
android:numColumns="auto_fit"
>
</GridView>
</RelativeLayout>