下午好,
将两个CardView放在一起(在同一条线上)的最佳方法是什么,两者之间有一个边距?
感谢您的帮助!
答案 0 :(得分:4)
您可以使用方向水平的LinearLayout:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal"
android:weightSum="2" >
<android.support.v7.widget.CardView
android:id="@+id/card_viewLeft"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_marginRight="5dp"
android:layout_weight="1" />
<android.support.v7.widget.CardView
android:id="@+id/card_viewRight"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_marginLeft="5dp"
android:layout_weight="1" />
</LinearLayout>