我正在使用RecycleView
和CardView
,但卡片之间有空格似乎太长了,你能告诉我如何修复它请我有2个文件
friends_list_item.xml
<?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:padding="16dp"
>
<android.support.v7.widget.CardView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/friendsList"
>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="16dp"
>
<ImageView
android:layout_width="55dp"
android:layout_height="55dp"
android:id="@+id/picture"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:layout_marginRight="16dp"
/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/username"
android:layout_toRightOf="@+id/picture"
android:layout_alignParentTop="true"
android:textStyle="bold" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/status"
android:layout_toRightOf="@+id/picture"
android:layout_below="@+id/username"
/>
</RelativeLayout>
</android.support.v7.widget.CardView>
</LinearLayout>
fragment_find_friends.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#e6e6e6"
android:orientation="vertical"
tools:ignore="TextFields,ContentDescription,UselessParent">
<LinearLayout
android:id="@+id/searchFieldContainer"
android:background="@color/white"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<EditText
android:id="@+id/searchField"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_gravity="center"
android:layout_marginLeft="5dp"
android:layout_weight="1"
android:hint="@string/search_elipses"/>
<ImageButton
android:id="@+id/searchBtn"
android:layout_width="46dp"
android:layout_height="46dp"
android:layout_gravity="center"
android:layout_margin="5dp"
android:background="@drawable/bg_follow_button"
android:src="@drawable/ic_done_white_24dp"/>
</LinearLayout>
<android.support.v7.widget.RecyclerView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/friendsList"/>
</LinearLayout>
这是截图:
答案 0 :(得分:4)
班轮布局&#34; android:layout_height =&#34; match_parent&#34;&#34;将其更改为wrap_content
试试吧:)
答案 1 :(得分:1)
您只需更改LinearLayout friends_list_item.xml上的填充。例如到8dp
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent" android:layout_height="match_parent"
android:padding="8dp"
>
答案 2 :(得分:0)
额外的空间是由于双填充...即第一个元素的底部填充和第二个元素的顶部填充,这导致双填充发生.. 解决方法是删除填充并应用填充顶部,填充右侧和填充左侧,这样就不会有任何双重填充。
答案 3 :(得分:0)
您可以将Linearlayout填充值16dp更改为您想要的距离
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent" android:layout_height="match_parent"
android:padding="16dp"
>