我是Android开发的新手并且自己学习它。我有一个非常奇怪的问题,即在我的回收者视图的每个项目之间都有奇怪的空间。我有以下内容:
我的回收站视图是垂直的,网格视图布局为2个跨度(列)。我一直在尝试的是:
<?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="wrap_content"
android:layout_marginLeft="@dimen/size_five"
android:layout_marginRight="@dimen/size_five"
android:layout_marginTop="@dimen/size_fifteen"
android:background="@color/blackColor"
android:clickable="true"
android:focusable="true"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="50">
<ImageView
android:id="@+id/album_image"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@color/blackColor"
/>
</LinearLayout>
<LinearLayout
android:id="@+id/lowerline"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="15"
android:background="@color/hotpinkColor"
android:orientation="horizontal">
<LinearLayout
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="4"
android:orientation="horizontal">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginLeft="@dimen/size_ten">
<TextView
android:id="@+id/album_title_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:gravity="left"
android:text="Album Title"
android:textColor="@color/whiteColor"
android:textSize="@dimen/size_eight"
android:textStyle="bold"/>
</RelativeLayout>
</LinearLayout>
<LinearLayout
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_marginRight="@dimen/size_ten"
android:layout_weight="5"
android:orientation="horizontal">
<LinearLayout
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:id="@+id/downloader"
android:layout_width="@dimen/size_thirty_six"
android:layout_height="@dimen/size_thirty_six"
android:layout_centerInParent="true"
android:src="@drawable/donwloaderimager"/>
</RelativeLayout>
</LinearLayout>
<LinearLayout
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:id="@+id/setteraswall"
android:layout_width="@dimen/size_fourty"
android:layout_height="@dimen/size_fourty"
android:layout_centerInParent="true"
android:src="@drawable/setteras"/>
</RelativeLayout>
</LinearLayout>
</LinearLayout>
</LinearLayout>
</LinearLayout>
</LinearLayout>
黑色空间显示了我想删除的额外奇怪空间。
答案 0 :(得分:1)
变化:
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="50">
<ImageView
android:id="@+id/album_image"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@color/blackColor"
/>
</LinearLayout>
到
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="50">
<ImageView
android:id="@+id/album_image"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@color/blackColor"
/>
</LinearLayout>
即将第二个父线性布局的高度更改为 wrap_content