优化图片加载速度。

This commit is contained in:
2025-12-10 17:42:09 +08:00
parent c7b0b1bc80
commit 29d30f3831
2 changed files with 13 additions and 12 deletions

View File

@@ -1,8 +1,8 @@
#Created by .winboll/winboll_app_build.gradle
#Wed Dec 10 16:54:47 HKT 2025
#Wed Dec 10 09:40:46 GMT 2025
stageCount=5
libraryProject=
baseVersion=15.12
publishVersion=15.12.4
buildCount=0
buildCount=7
baseBetaVersion=15.12.5

View File

@@ -55,8 +55,8 @@ public class BackgroundView extends RelativeLayout {
LogUtils.d(TAG, "=== initView 启动 ===");
// 1. 配置当前控件:全屏+透明
setLayoutParams(new LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT));
setBackgroundColor(0x00000000);
setBackground(new ColorDrawable(0x00000000));
//setBackgroundColor(0x00000000);
//setBackground(new ColorDrawable(0x00000000));
// 2. 初始化主容器LinearLayout
initLinearLayout();
@@ -64,8 +64,9 @@ public class BackgroundView extends RelativeLayout {
// 3. 初始化ImageView
initImageView();
// 4. 初始设置透明背景
// 初始设置透明背景
setDefaultTransparentBackground();
LogUtils.d(TAG, "=== initView 完成 ===");
}
@@ -101,11 +102,11 @@ public class BackgroundView extends RelativeLayout {
}
public void loadBackgroundBean(BackgroundBean bean) {
if(!bean.isUseBackgroundFile()) {
if (!bean.isUseBackgroundFile()) {
setDefaultTransparentBackground();
return;
}
if(bean.isUseBackgroundScaledCompressFile()) {
if (bean.isUseBackgroundScaledCompressFile()) {
loadImage(bean.getBackgroundScaledCompressFilePath());
} else {
@@ -199,9 +200,9 @@ public class BackgroundView extends RelativeLayout {
* 调整ImageView尺寸保持原图比例在LinearLayout中居中平铺
*/
private void adjustImageViewSize() {
LogUtils.d(TAG, "=== adjustImageViewSize 启动 ===");
//LogUtils.d(TAG, "=== adjustImageViewSize 启动 ===");
if (mLlContainer == null || mIvBackground == null) {
LogUtils.e(TAG, "控件为空");
//LogUtils.e(TAG, "控件为空");
return;
}
@@ -214,7 +215,7 @@ public class BackgroundView extends RelativeLayout {
public void run() {
adjustImageViewSize();
}
}, 10);
}, 120);
return;
}
@@ -235,8 +236,8 @@ public class BackgroundView extends RelativeLayout {
mIvBackground.setLayoutParams(params);
mIvBackground.setScaleType(ScaleType.FIT_CENTER); // 确保居中平铺
LogUtils.d(TAG, "ImageView尺寸" + ivWidth + "x" + ivHeight);
LogUtils.d(TAG, "=== adjustImageViewSize 完成 ===");
//LogUtils.d(TAG, "ImageView尺寸" + ivWidth + "x" + ivHeight);
//LogUtils.d(TAG, "=== adjustImageViewSize 完成 ===");
}
private void setDefaultTransparentBackground() {