答案 0 :(得分:0)
我建议使用带链的ConstraintLayout
。请参阅文档here。 ConstraintLayout
将包含您的CardView
,它们将全部位于ScrollView
内。布局会很好地适应不同的屏幕尺寸。
答案 1 :(得分:0)
下面的布局会自动调整到任何屏幕尺寸......没有滚动视图
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:weightSum="75">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:orientation="horizontal"
android:layout_weight="25"
android:weightSum="100">
<Button
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="50"
android:text="Card"/>
<Button
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="50"
android:text="Card"/>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:orientation="horizontal"
android:layout_weight="25"
android:weightSum="100">
<Button
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="50"
android:text="Card"/>
<Button
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="50"
android:text="Card"/>
</LinearLayout>
<Button
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="25"
android:text="View"/>
</LinearLayout>