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.
当我使用不同的布局来支持不同的屏幕时,我应该使用 dp 还是 px 。
dp 是最好的,因为它会根据设备的屏幕尺寸自行调整。它因设备而异,但小于像素。所以,总是选择 dp。
始终使用 dp 而不是 px。这里需要理解三个不同但相互关联的概念:屏幕密度(每英寸/厘米的像素,或通常称为打印机中每英寸点数的 DPI)、物理屏幕尺寸(以英寸或厘米为单位)和像素数(也称为分辨率,以像素为单位)。
这是完整的答案。另请阅读此。