我有一个带有ContrainstLayout的页面,其中包含图像和文本视图。对于图像,我想使W:H比率为1:1。但是由于某种原因,图像始终具有开始和结束边距(即使我将边距设置为0)
下面是包含布局的父页面(在“ ViewPager”的位置):
<?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"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:id="@+id/imgView"
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_marginStart="0dp"
android:layout_marginTop="0dp"
android:layout_marginEnd="0dp"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintDimensionRatio="H,1:1"/>
<TextView
android:id="@+id/tvCaption"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textColor="@color/guideText"
android:gravity="center"
android:layout_marginTop="10dp"
android:layout_marginStart="20dp"
android:layout_marginEnd="20dp"
android:layout_marginBottom="20dp"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintTop_toBottomOf="@id/imgView"/>
</android.support.constraint.ConstraintLayout
答案 0 :(得分:0)
您指定的比率将为您提供比率为1:1的 ImageView 。您的图像保持其长宽比,并位于 ImageView 中。我猜图像比宽度高一点,所以这就是为什么您在侧面看到条形图的原因。要完全填充1:1 ImageView ,您将需要以某种方式在顶部和/或底部裁剪图像
对于 ImageView 尝试以下操作。我认为您会发现它填充了屏幕的宽度并裁剪了图像的高度。有关android:scaleType="centerCrop"
的工作方式的详细信息,请参见scaleType。 Android ImageView ScaleType: A Visual Guide也很方便。
<ImageView
android:id="@+id/imgView"
android:layout_width="0dp"
android:layout_height="0dp"
android:src="@drawable/mypngimage"
android:scaleType="centerCrop"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintDimensionRatio="H,1:1"/>