图片尺寸调整函数优化
This commit is contained in:
@@ -1,8 +1,8 @@
|
||||
#Created by .winboll/winboll_app_build.gradle
|
||||
#Wed Dec 10 20:11:13 HKT 2025
|
||||
#Wed Dec 10 12:27:54 GMT 2025
|
||||
stageCount=12
|
||||
libraryProject=
|
||||
baseVersion=15.12
|
||||
publishVersion=15.12.11
|
||||
buildCount=0
|
||||
buildCount=1
|
||||
baseBetaVersion=15.12.12
|
||||
|
||||
@@ -211,16 +211,17 @@ public class BackgroundView extends RelativeLayout {
|
||||
// 获取LinearLayout尺寸
|
||||
int llWidth = mLlContainer.getWidth();
|
||||
int llHeight = mLlContainer.getHeight();
|
||||
if (llWidth == 0 || llHeight == 0) {
|
||||
postDelayed(new Runnable() {
|
||||
@Override
|
||||
public void run() {
|
||||
adjustImageViewSize();
|
||||
}
|
||||
}, 100);
|
||||
return;
|
||||
}
|
||||
// if (llWidth == 0 || llHeight == 0) {
|
||||
// postDelayed(new Runnable() {
|
||||
// @Override
|
||||
// public void run() {
|
||||
// adjustImageViewSize();
|
||||
// }
|
||||
// }, 100);
|
||||
// return;
|
||||
// }
|
||||
|
||||
if (llWidth != 0 && llHeight != 0) {
|
||||
// 计算ImageView尺寸(保持比例,不超出LinearLayout)
|
||||
int ivWidth, ivHeight;
|
||||
if (mImageAspectRatio >= 1.0f) {
|
||||
@@ -239,10 +240,10 @@ public class BackgroundView extends RelativeLayout {
|
||||
mIvBackground.setScaleType(ScaleType.FIT_CENTER); // 确保居中平铺
|
||||
mIvBackground.setVisibility(View.VISIBLE);
|
||||
|
||||
|
||||
//LogUtils.d(TAG, "ImageView尺寸:" + ivWidth + "x" + ivHeight);
|
||||
//LogUtils.d(TAG, "=== adjustImageViewSize 完成 ===");
|
||||
}
|
||||
}
|
||||
|
||||
private void setDefaultTransparentBackground() {
|
||||
mIvBackground.setImageBitmap(null);
|
||||
|
||||
Reference in New Issue
Block a user