Android设置布局位置五等分,五等分划分屏幕

因为你ImageView宽度取决于屏幕的宽度。而且你没有设置尖锐的大小。

我想你需要一个正方形ImageView应该由自己与下面的代码来定义:

namespace SharpText_Demo

{

[Register("sharpText_Demo.SquareImageView")]

public class SquareImageView : ImageView

{

public SquareImageView(Context context):base(context)

{

}

public SquareImageView(Context context, IAttributeSet attrs):base(context,attrs,0)

{

}

public SquareImageView(Context context, IAttributeSet attrs, int defStyle):base(context,attrs,defStyle)

{

}

protected override void OnMeasure(int widthMeasureSpec, int heightMeasureSpec)

{

SetMeasuredDimension(GetDefaultSize(0, widthMeasureSpec), GetDefaultSize(0, heightMeasureSpec));

int childWidthSize = MeasuredWidth;

//SET height = width

heightMeasureSpec = widthMeasureSpec = MeasureSpec.MakeMeasureSpec(childWidthSize, MeasureSpecMode.Exactly);

base.OnMeasure(widthMeasureSpec, heightMeasureSpec);

}

}

}

设置ImageView高度总是等于它的宽度。

然后改变你的axml文件:

android:orientation="vertical"

android:layout_width="match_parent"

android:layout_height="match_parent">

android:layout_width="match_parent"

android:layout_height="100dp"

android:id="@+id/img6"

android:weightSum="5"

android:orientation="horizontal">

android:layout_width="0dp"

android:layout_height="wrap_content"

android:layout_weight="1"

android:scaleType="fitXY"

android:background="@drawable/vectorshape"

android:id="@+id/img1" />

android:layout_width="0dp"

android:layout_height="wrap_content"

android:scaleType="centerInside"

android:layout_weight="1"

android:background="@drawable/vectorshape"

android:id="@+id/img2" />

android:layout_width="0dp"

android:layout_height="wrap_content"

android:scaleType="fitXY"

android:layout_weight="1"

android:background="@drawable/vectorshape"

android:id="@+id/img3" />

android:layout_width="0dp"

android:layout_height="wrap_content"

android:adjustViewBounds="true"

android:scaleType="centerCrop"

android:id="@+id/img4"

android:background="@drawable/vectorshape"

android:layout_weight="1" />

android:layout_width="0dp"

android:layout_height="wrap_content"

android:layout_weight="1"

android:id="@+id/img5"

android:background="@drawable/vectorshape" />

算了scaleType它用于android:src = ....

您将得到屏幕快照:

90b98fa6d517c9cab49ee61400b7da14.png

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值