ImageView
ピカソを使用して読み込まれたアイテムの1つである垂直のLinearLayoutがあります。画像の幅をデバイス全体の幅まで上げ、画像の中央部分を固定された高さ(150dp)でトリミングして表示する必要があります。私は現在次のコードを持っています:
Picasso.with(getActivity())
.load(imageUrl)
.placeholder(R.drawable.placeholder)
.error(R.drawable.error)
.resize(screenWidth, imageHeight)
.centerInside()
.into(imageView);
私はどちらの値をに入れなければならないscreenWidth
とimageHeight
(= 150DP型)?