小米最小宽度设置多少合适
1、小米手机中的最小宽度是以 dp 为单位存在的,而不是以像素密度 PPI 为单位。最小宽度是指屏幕上可用于布局的最小宽度,可以通过开发者选项进行设置。
2、不同型号的小米手机默认的最小宽度不尽相同。目前大多数小米手机的默认最小宽度为 392dp。
3、最小宽度的设置应该
int
smallestWidth
=
getResources
;">)
.
getConfiguration
;">)
.
smallestScreenWidthDp
;
1、可以使用以下代码来修改最小宽度值:
Configuration
configuration
=
getResources
;">)
.
getConfiguration
;">)
;
configuration
.
smallestScreenWidthDp
=
newSmallestWidth
;
getResources
;">)
.
updateConfiguration
;">,
getResources
;">)
.
getDisplayMetrics
;">)
)
;
其中,newSmallestWidth 是你想要设置的新的最小宽度值。需要注意的是,修改最小宽度值可能会对应用程序的布局产生影响,因此需要谨慎操作。
版权申明:文章由用户发布,不代表本网站立场,如果侵权请联系我们删除。