1. 在布局组件中声明 xmlns:tools 命名空间,例如:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools">
2. 在布局组件中声明要使用 tools 命名空间的上下文对象,例如:
<LinearLayout 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"
android:gravity="center"
android:orientation="vertical"
tools:context=".CheatActivity">
3. 对要使用预览信息的组件属性使用 tools 命名空间,例如:
<TextView
android:id="@+id/answer_text-view"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="24dp"
tools:text="Answer"/>
tools 命名空间可以覆盖组件的任何属性,这样就可以在Android Studio预览中看到效果,而在应用运行时,设置的预览文件不会显示。