我在下面创建了一个cardview
我的代码是: -
+---+-------------------------+
|id | vecResult |
+---+-------------------------+
|a |(5,[0,3],[1.0,1.0]) |
|b |(5,[2,4,5],[1.0,1.0,1.0])|
|e |(5,[1],[1.0]) |
+---+-------------------------+
我想从左侧,右侧,顶部和底部移除空间额外空间,如下图所示: -
我该怎么办?
答案 0 :(得分:1)
<强>机器人:layout_margin 强>
指定视图4侧的额外空间。
从 XML
中移除属性android:layout_margin="5dp".
修改强>
<ImageView
android:id="@+id/thumbnail"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="center"
android:scaleType="centerCrop" //REMOVE this
/>
答案 1 :(得分:1)
从android:layout_margin="5dp
移除Cardview
“。
答案 2 :(得分:0)
试试这段代码:
<android.support.v7.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:card_view="http://schemas.android.com/apk/res-auto"
android:id="@+id/card_view"
android:layout_width="match_parent"
android:layout_height="wrap_content"
card_view:cardCornerRadius="4dp">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="160dp"
android:orientation="vertical"
android:weightSum="4">
<FrameLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="center_horizontal">
<ImageView
android:id="@+id/thumbnail"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="center"
android:scaleType="centerCrop"
/>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="left|bottom"
android:background="@android:drawable/screen_background_dark_transparent"
android:orientation="vertical">
<TextView
android:id="@+id/title"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="16dp"
android:textSize="16dp"
android:textColor="#FFFFFF"
android:textStyle="bold" />
<TextView
android:id="@+id/count"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/title"
android:paddingBottom="@dimen/songs_count_padding_bottom"
android:visibility="invisible"
android:paddingLeft="@dimen/album_title_padding"
android:paddingRight="@dimen/album_title_padding"
android:textSize="@dimen/songs_count" />
</LinearLayout>
</FrameLayout>
</LinearLayout>