美文网首页
Android布局默认开发时显示运行时隐藏

Android布局默认开发时显示运行时隐藏

作者: Marlon_IT | 来源:发表于2020-06-18 16:47 被阅读0次

    做Android开发过程中,有没有一种方法可以让默认文字只在android studio 编辑时显示,而在真机运行时不显示,避免加载数据时的不友好展示呢?

    实现方式

    1. 在根布局中添加tools标签:
    xmlns:tools="http://schemas.android.com/tools"
    

    2.使用tools标签替换android标签:

    //TextView中
    tools:text="张三"
    //ImageView中:
    tools:src="@mipmap/ic_launcher_round"
    

    相关文章

      网友评论

          本文标题:Android布局默认开发时显示运行时隐藏

          本文链接:https://www.haomeiwen.com/subject/dhwuxktx.html