答案 0 :(得分:1)
“tools”命名空间可能能够在这里为您提供帮助。您可以使用以下行添加它:
xmlns:tools="http://schemas.android.com/tools"
在您的根布局中。像工具这样的东西:文本将显示在预览中,但不会在应用程序运行时显示。所以以下观点:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:visibility="gone"
tools:visibility="visible"
tools:text="Preview Text" />
</RelativeLayout>
将在预览中显示带有“预览文本”的TextView,但它实际上是View.GONE,并且在运行时没有文本。