0%

ARTS2

ARTS2

Algorithm

Review

Tip

ViewOutlineProvider

Share

CSS 实现 Android 图片的 centerInside 效果

  1. 图片父布局的 style

    1
    2
    3
    4
    5
    .parent {
    display: flex;
    align-items: center;
    justify-content: center;
    }
  2. 图片的 style

    1
    2
    3
    4
    .img {
    max-width: 100%;
    max-height: 100%;
    }