在fill_parent之后留下空的空间..这是一个cardView错误还是我做错了什么..任何帮助赞赏..谢谢..评论部分将在TextView上切换标记为“选择”按下。这是足够的信息和足够的细节。任何帮助将不胜感激
<android.support.v7.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:card_view="http://schemas.android.com/apk/res-auto"
android:id="@+id/card_view"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
card_view:cardCornerRadius="4dp">
.
.
.
.
.
.
.
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="0dp"
android:layout_weight="22.5"
android:background="@color/blue">
<LinearLayout
android:id="@+id/ll_select"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal"
android:weightSum="100">
<TextView
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="49.8"
android:background="@color/blue"
android:gravity="center"
android:text="No,Thanks"
android:textColor="#ffffff"
android:textSize="15sp"
android:textStyle="bold" />
<View
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_marginBottom="5dp"
android:layout_marginTop="5dp"
android:layout_weight=".4"
android:background="#ffffff" />
<TextView
android:id="@+id/tv_select"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="49.8"
android:background="@color/blue"
android:clickable="true"
android:gravity="center"
android:text="Select"
android:textColor="#ffffff"
android:textSize="15sp"
android:textStyle="bold" />
</LinearLayout>
<!-- <LinearLayout
android:id="@+id/ll_unselect"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:visibility="invisible">
<TextView
android:id="@+id/tv_unselect"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#b6b6b6"
android:clickable="true"
android:gravity="center"
android:text="Unselect"
android:textColor="#000000"
android:textSize="15sp"
android:textStyle="bold" />
</LinearLayout>
-->
</RelativeLayout>