以编程方式为imageView

时间:2017-11-03 08:58:44

标签: android aspect-ratio android-constraintlayout

我在显示没有centerCrop的风景图像时遇到问题。 我尝试PercentFramelayout,并以编程方式设置宽高比 像这样:

laParams.percentLayoutInfo.aspectRatio = img.width.toFloat() / img.height.toFloat()

结果还可以 - 应用程序显示没有centerCrop的所有风景图像:

Post loaded successfully

但有时我会得到错误的宽高比:

Wrong aspect ratio 1

Wrong aspect ratio 2

我试过了android:adjustViewBounds ="true",但它对我没有帮助。 我用ConstraintLayout,用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"
    android:id="@+id/container"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@color/white"
    >

    <android.support.v7.widget.AppCompatImageView xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:app="http://schemas.android.com/apk/res-auto"
        android:id="@+id/photo"
        android:layout_width="0dp"
        android:layout_height="0dp"
        app:layout_constraintDimensionRatio="h,16:9"
        app:layout_constraintHorizontal_chainStyle="spread"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintTop_toTopOf="parent"

        />
</android.support.constraint.ConstraintLayout>

我得到了很好的结果,但我加载了不同大小的图像。图片应该没有CenterCropFitXY。我没有找到关于Constraintlayout的编程方式设置宽高比的任何好答案 我想显示像instagram或vk这样的图片。

3 个答案:

答案 0 :(得分:11)

迟到的答案,像往常一样,但这可能对某人有用。

您可以通过执行以下操作以编程方式设置ratio属性:

ConstraintSet set = new ConstraintSet();
set.clone(mLayout);
set.setDimensionRatio(mView.getId(), "16:9");
set.applyTo(mLayout);

我上面做的是获取布局的现有ConstraintSet并在将ConstraintSet重新应用到ConstraintLayout(mLayout)之前以编程方式添加比率约束。

您应该使用findViewById()方法获取ConstraintLayout(mLayout)(并在.xml中手动将id属性添加到ConstraintLayout中)。

答案 1 :(得分:5)

只需更改layoutParams即可

 (view.layoutParams as ConstraintLayout.LayoutParams).dimensionRatio = "16:9"

答案 2 :(得分:2)

您也可以查看下面的代码

val layoutParams = imageView.layoutParams as ConstraintLayout.LayoutParams
layoutParams.dimensionRatio = "H,2:1"
imageView.layoutParams = layoutParams