如何在文本视图中添加一些模板文本,这些文本只能在Android Studio中的设计器中显示,也可能在调试中显示,但在发布应用程序时却不能显示?
答案 0 :(得分:2)
通过添加tools
属性,文本仅对design
区域可见,而不是运行时。
<FrameLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools" <!--add this-->
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
tools:text="examle text"
android:textColor="@color/colorLightGray"/>
</FrameLayout>