CenterCropなしで横向きの画像を表示すると問題が発生します。私はPercentFramelayout
を試し、プログラムで次のようにアスペクト比を設定しました。
laParams.percentLayoutInfo.aspectRatio = img.width.toFloat() / img.height.toFloat()
結果は問題ありません-アプリケーションは、centerCropなしですべての横向きの画像を表示しました:
しかし、時々私は間違ったアスペクト比を取得します:
私は試した 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>
良い結果が得られましたが、異なるサイズの画像をロードしました。画像にはCenterCrop
とFitXY
を含めないでください。 Constraintlayout
に対してプログラムでアスペクト比を設定することについて、良い答えが見つかりませんでした。instagramやvkなどの画像を表示したいと思います。
いつものように遅い答えですが、これは誰かにとって役立つかもしれません。
次の操作を行うことにより、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)を取得する必要があります。
layoutParamsを変更するだけでも機能します
(view.layoutParams as ConstraintLayout.LayoutParams).dimensionRatio = "16:9"