Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用下面的代码来设置 ImageView 的 ScaleType:
iv.setScaleType(ScaleType.FIT_END);
它将适合右下角。 但我想让图片适合左下角。 我该怎么做?
尝试将 imageview 的调整视图设置为 true,然后将对齐底部父级和对齐左父级设置为 true。希望有效:)
另一种解决方案:
imageView.setAdjustViewBounds(true); imageView.setBaselineAlignBottom(true);
适用于API_LEVEL>= 11。
API_LEVEL