Android工作室中的Android自定义视图预览

时间:2018-03-18 02:28:35

标签: android android-studio android-custom-view

我正在开发一个自定义视图&我希望它显示如下的Google广告视图。我的视图不包含任何文本视图,但我仍然希望它有这样的预览。

任何人都可以支持我一个解决方案吗?谢谢!!

enter image description here

1 个答案:

答案 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,并且在运行时没有文本。