返回顶部
首页 > 资讯 > 移动开发 >Android Studio使用小技巧:布局预览时填充数据
  • 440
分享到

Android Studio使用小技巧:布局预览时填充数据

AndroidStudiostudio数据技巧布局Android 2022-06-06 10:06:32 440人浏览 薄情痞子
摘要

我们都知道Android Studio用起来很棒,其中布局预览更棒。我们在调UI的时候基本是需要实时预览来看效果的,在Android Studio中只需要切换到Design就可

我们都知道Android Studio用起来很棒,其中布局预览更棒。我们在调UI的时候基本是需要实时预览来看效果的,在Android Studio中只需要切换到Design就可以看到,而且我们需要在布局上填充数据预览效果更好,比如我们在TextView中设定text属性来看下字体大小与布局是否正确,但是呢正式环境我们又需要移除这些额外的数据,不然看着很不舒服,这个时候就用到了本篇博客介绍的一个技巧。

废话不多说,直接上图:

上述示例中只需要在xml布局文件中添加tools命名空间的text属性就ok了,此属性和正式发布的版本完全无关,是不是很酷?

用之前只需要在跟布局添加命名空间就ok了
代码如下:
<LinearLayout
    xmlns:android="Http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    ...
用法很简单,只需要用tools的命名空间代替android的命名空间,我们可以这样使用
代码如下:
<ListView
    android:id="@+id/listView"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:fastScrollAlwaysVisible="true"
    tools:fastScrollAlwaysVisible=""/>
也可以这样使用
代码如下:
<Button
    android:id="@+id/button"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="First"
    tools:visibility="invisible" />

<Button
    android:id="@+id/button2"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Second"
    tools:visibility="visible" />
注意的是tools属性只能在layout文件中使用,而且只能使用framework自带的一些属性,不可以用使用自定义属性,不过这足够了,基本上能满足我们的需求了。

您可能感兴趣的文章:Android Studio使用小技巧:提取方法代码片段Android Studio使用教程(二):基本设置与运行Android Studio使用教程(一):下载与安装及创建HelloWorld项目Android Studio的中文乱码问题解决方法Mac OS下为Android Studio编译FFmpeg解码库的详细教程图解windows环境下Android Studio安装和使用教程Android Studio注释模板介绍Android Studio使用小技巧:自定义LoGCatAndroidStudio 使用过程中出现的异常(Gradle sync failed)处理办法AndroidStudio:手势识别


--结束END--

本文标题: Android Studio使用小技巧:布局预览时填充数据

本文链接: https://lsjlt.com/news/26769.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

猜你喜欢
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作