在我的申请中,我经常依靠自定义的建立观点,例如以下的例子。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:background="@color/light_grey"
android:layout_height="match_parent"
android:layout_width="fill_parent" >
<TextView
style="@style/CardTitle"
android:id="@+id/card_title"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
/>
<com.whiterabbit.cards.ui.AspectRatioImageView
android:id="@+id/card_picture"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:adjustViewBounds="true"
android:layout_marginLeft="30dip"
android:layout_marginRight="30dip"
android:src="@drawable/boss"
/>
<ListView
android:id="@+id/card_properties"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
/>
问题是,我不知道它会如何被正确显示,直到我用一个真正的设备或模拟器运行它。 此外,如果我发现有问题,我不得不对它进行修改并再次使用应用程序来查看这些修改是否如您所期望的那样有效。
这可能是一个漫长而无聊的过程,特别是如果应用程序需要某种互动才能进入您想要检查的活动。
使用视觉编辑器无效, 因为它无法装入自定义视图 。
是否有其他方法可以检查视图如何显示而不在整个应用程序中运行?