我使用RecyclerView制作了一个布局,其中每个项目都是一个ImageView,下面有一个TextView,下面有一个形状,可以为项目添加边框。
问题是,在纵向方向上,图像不适合整个空间,而在横向方向上。
activity.xml:
<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/coordlayout" >
<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/appbarlayout">
<android.support.design.widget.CollapsingToolbarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/collapsingtoolbar"
app:layout_scrollFlags="scroll|enterAlways">
<include
layout="@layout/toolbar"
android:id="@+id/toolbar"
app:layout_scrollFlags="scroll|enterAlways" />
</android.support.design.widget.CollapsingToolbarLayout>
</android.support.design.widget.AppBarLayout>
<android.support.v7.widget.RecyclerView
android:id="@+id/recyclerview"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/appbarlayout"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
</android.support.v7.widget.RecyclerView>
</android.support.design.widget.CoordinatorLayout>
recyclerview_item.xml:
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="5dp" >
<ImageView
android:id="@+id/flIcon"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:contentDescription="@string/freelancer_s_portrait"
android:background="@drawable/menu_square"
app:srcCompat="@drawable/rampart_pt"
android:padding="3dp"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<TextView
android:id="@+id/flName"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/menu_square"
android:gravity="center"
android:text="Asana"
android:textAppearance="@android:style/TextAppearance.DeviceDefault.Medium.Inverse"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toBottomOf="@+id/flIcon" />
</android.support.constraint.ConstraintLayout>
我该如何解决?
答案 0 :(得分:0)
您可以设置imageview的scaleType属性,但图片可能会失真。
android:scaleType="fitXY"
答案 1 :(得分:0)
您可以使用
android:scaleType="centerCrop"
如果您使用wrap_content
,则ImageView
将具有实际图片jpg的高度,而不是您想要的高度。
但是你可以使用自己的身高dps。