前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >Android dp sp 的区别

Android dp sp 的区别

作者头像
程思扬
发布2022-12-02 14:53:17
4620
发布2022-12-02 14:53:17
举报
文章被收录于专栏:程思阳的专栏
代码语言:javascript
复制
px : 其实就是像素单位,比如我们通常说的手机分辨列表800*400都是px的单位
sp : 同dp相似,还会根据用户的字体大小偏好来缩放
dp : 虚拟像素,在不同的像素密度的设备上会自动适配
dip: 同dp

由此可以看出使用sp作为字体大小单位,会随着系统的字体大小改变,而dp作为单位则不会。 而 dp 也叫 dip,是 device independent pixels

1.dp、sp、px的TextView XML代码如下:

代码语言:javascript
复制
    <TextView
        android:text="Hello World!"
        android:layout_width="150dp"
        android:layout_height="wrap_content"
        tools:ignore="MissingConstraints" />

    <TextView
        android:text="Hello World!"
        android:layout_width="150sp"
        android:layout_height="wrap_content"
        tools:ignore="MissingConstraints" />

    <TextView
        android:text="Hello World!"
        android:layout_width="150px"
        android:layout_height="wrap_content"
        tools:ignore="MissingConstraints" />

2.接下来是dp、sp、px的Button XML的代码:

代码语言:javascript
复制
    <Button
        android:text="Hello World!"
        android:layout_width="200dp"
        android:layout_height="wrap_content"
        tools:ignore="MissingConstraints" />

    <Button
        android:text="Hello World!"
        android:layout_width="200sp"
        android:layout_height="wrap_content"
        tools:ignore="MissingConstraints" />

    <Button
        android:text="Hello World!"
        android:layout_width="200px"
        android:layout_height="wrap_content"
        tools:ignore="MissingConstraints" />

因此通常情况下,我们还是建议使用sp作为字体的单位,除非一些特殊的情况,不想跟随系统字体变化的,可以使用dp

本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2022-11-25,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档