当前位置:   article > 正文

android中布局xml中tools属性_tools:ignore="rtlhardcoded

tools:ignore="rtlhardcoded

今天复制别人的布局的时候发现在android studio中预览布局完全没有问题,结果一运行除了图片文字都没有,以为是主题的关系,后来发现是命名空间的关系

下面是代码,只要将tools改成android的命名空间就行了

TextView
                android:id="@+id/tv_tweet_name"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:singleLine="true"
                android:textAppearance="?android:attr/textAppearanceLarge"
                android:textColor="@color/blog_title_text_color_light"
                android:textSize="16sp"
                tools:text="Large Text" />
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9

还有就是ignore的使用,可以去掉小黄点

tools:ignore="RtlHardcoded"
  • 1
        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginLeft="@dimen/lay_8"
            android:orientation="vertical"
            tools:ignore="RtlHardcoded">
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

具体请看下面链接
Tools 命名空间的使用与 Support Library Annotations 介绍
希望能帮助到你们

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/寸_铁/article/detail/943959
推荐阅读
相关标签
  

闽ICP备14008679号