赞
踩
今天复制别人的布局的时候发现在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" />
还有就是ignore的使用,可以去掉小黄点
tools:ignore="RtlHardcoded"
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="@dimen/lay_8"
android:orientation="vertical"
tools:ignore="RtlHardcoded">
具体请看下面链接
Tools 命名空间的使用与 Support Library Annotations 介绍
希望能帮助到你们
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。