This question already has answers here:
What is the difference between “px”, “dip”, “dp” and “sp”?
                                
                                    (33个答案)
                                
                        
                                5年前关闭。
            
                    
我目前正在使用以下图像视图-

<ImageView
        android:id="@+id/flag"
        android:layout_width="120dp"
        android:layout_height="120dp"
        android:background="#000000"
        />


但是我有点困惑

使用什么dpdip

因此它会因设备而异,表示应该管理屏幕尺寸,例如320 x 640还是有其他需要管理的屏幕尺寸

提前致谢

最佳答案

没有区别。 dip和dp是同一回事。

关于android - dp和dip之间有什么区别? ,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/21525877/

10-10 08:49