在我的應用程序中,我經常依賴自定義構建視圖,如下例所示。Eclipse可視化編輯器中的自定義Android視圖
<?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"
/>
的問題是,我不知道如何,如果我之前在真實設備上或在模擬器上運行它,它會正確顯示。此外,如果我發現有問題,我將不得不對其執行更改並再次部署該應用程序,以查看這些更改是否按預期工作。
這可能是一個漫長而無聊的過程,尤其是如果應用程序需要一些交互才能訪問您要檢查的活動。
使用可視編輯器不起作用,因爲它無法加載自定義視圖。
是否有另一種方法來檢查視圖如何顯示,而無需在整個應用程序中運行?
感謝@Blundell修訂我的問題 – fedepaol