如何将模板文本添加到不会发布的文本视图中

时间:2016-05-05 10:19:14

标签: android

如何在文本视图中添加一些模板文本,这些文本只能在Android Studio中的设计器中显示,也可能在调试中显示,但在发布应用程序时却不能显示?

1 个答案:

答案 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>