MLN icon indicating copy to clipboard operation
MLN copied to clipboard

android:ImageView的 ContentMode.SCALE_ASPECT_FILL枚举效果有问题。

Open xuwhale6 opened this issue 4 years ago • 1 comments

image

local layout = LinearLayout(LinearType.VERTICAL):bgColor(Color(255, 0, 0, 0.3))
local window_1_6 = ImageView():marginTop(100):bgColor(Color(120, 120, 120, 1))
window_1_6:image("https://hbimg.huabanimg.com/7c41bc5871d74c9036932ca9bba76de363727be113b6fd-NApej6_fw658")
window_1_6:width(50)
window_1_6:height(50)
window_1_6:contentMode(ContentMode.SCALE_ASPECT_FILL)
window_1_6:setGravity(Gravity.LEFT)
layout:addView(window_1_6)
window:addView(layout)

xuwhale6 avatar May 15 '20 04:05 xuwhale6

已修改

fangyuxiong avatar Oct 19 '20 03:10 fangyuxiong