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.
一些 CSS 属性在某些 Android 手机上不起作用,这很烦人。max-height和max-width属性也是如此。
max-height
max-width
是否有任何等效的 CSS 属性来处理这些事情?在图像的情况下,图像应根据比例进行缩放。这是一个相同的jsfiddle。
我不知道是否有任何等效的属性,但你可以这样做:
您在 mainActivity 上获得宽度和高度。
Display display = getWindowManager().getDefaultDisplay(); int width = display.getWidth(); int height = display.getHeight();
然后为您的图像宽度和高度设置默认值。
然后计算你的新值。