我想将ImageView的高度设置为宽度的50%。 我该怎么办? 例如,如果ImageView的宽度等于200dp,我希望其高度等于100dp。
我尝试过这样,但是没有用。
int img_width = cover_img.getLayoutParams().width;
int img_height = img_width/2;
cover_img.getLayoutParams().width = img_width;
cover_img.getLayoutParams().height = img_height;
cover_img.requestLayout();
请帮助我
更新: 我写了代码,并使用该类来完成此操作,这是将ImageView高度设置为宽度的50%的简单,便捷的方法。
public class RectImage extends ImageView
{
public RectImage(Context context)
{
super(context);
}
public RectImage(Context context, AttributeSet attrs)
{
super(context, attrs);
}
public RectImage(Context context, AttributeSet attrs, int defStyleAttr)
{
super(context, attrs, defStyleAttr);
}
public RectImage(Context context, AttributeSet attrs, int defStyleAttr, int defStyleRes)
{
super(context, attrs, defStyleAttr, defStyleRes);
}
@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec)
{
final int widthSize = MeasureSpec.getSize(widthMeasureSpec);
final int heightSize = MeasureSpec.getSize(heightMeasureSpec);
setMeasuredDimension(widthSize, widthSize/2);
}
}
答案 0 :(得分:0)
尝试执行以下操作
int img_width = cover_img.getDrawable().getIntrinsicWidth();
int img_height = img_width/2;
cover_img.getLayoutParams().width = img_width;
cover_img.getLayoutParams().height = img_height;
cover_img.requestLayout();
答案 1 :(得分:0)
如果将ConstraintLayout
用作根,则可以执行以下操作:
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:animateLayoutChanges="true"
>
<ImageView
android:id="@+id/image_view"
android:layout_width="0dp"
android:layout_height="0dp"
android:visibility="invisible"
app:layout_constraintDimensionRatio="1:0.50"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
/>
</androidx.constraintlayout.widget.ConstraintLayout>
主要围绕layout_constraintDimensionRatio
,这将自动实现您想要的功能,可能也是最简单的方法。
当然,请根据需要放置您的视图,并在此处忽略约束准则,我只是将它们放在此处作为完整示例。
答案 2 :(得分:0)
如果使用“约束布局”,则可以在xml中设置比例
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:id="@+id/cover_img"
android:layout_width="match_parent"
android:layout_height="0dp"
app:layout_constraintDimensionRatio="2:1" />
</androidx.constraintlayout.widget.ConstraintLayout>
或者像您的示例代码一样通过编程方式进行设置。
//Your layout param type
ViewGroup.LayoutParams lpm = cover_img.getLayoutParams();
int width = lpm.width;
int height =width/2;
lpm.height = height;
cover_img.setLayoutParams(lpm);
cover_img.requestLayout();