web-dev-qa-db-ja.com

プログラムでimageViewのアスペクト比を設定する

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などの画像を表示したいと思います。

9

いつものように遅い答えですが、これは誰かにとって役立つかもしれません。

次の操作を行うことにより、ratioプロパティをプログラムで設定できます。

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

上記では、レイアウトの既存のConstraintSetを取得し、ConstraintLayout(mLayout)にConstraintSetを再適用する前に、プログラムで比率制約を追加しています。

FindViewById()メソッドを使用して(そして、.xmlのConstraintLayoutにidプロパティを手動で追加して)、ConstraintLayout(mLayout)を取得する必要があります。

20
Julius

layoutParamsを変更するだけでも機能します

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