我创建了一个自定义xml文件,其中包含构成ListView中行的一些元素。我已将ListView的预览设置为此xml文件。我无法弄清楚如何摆脱默认"项目1","项目2","项目3" ......但是。
有没有人知道可能导致这种情况的原因?
以下是代码和截图:
my_custom_list.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingLeft="8dp"
android:paddingRight="8dp">
<ListView android:id="@android:id/list"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:drawSelectorOnTop="false">
<!-- Preview: listitem=@layout/my_custom_list_row -->
</ListView>
</LinearLayout>
my_custom_list_row.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:padding="6dip"
android:orientation="horizontal">
<CheckBox
android:id="@+id/icon"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_marginRight="6dip"
/>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:padding="6dip"
android:orientation="vertical" >
<TextView
android:id="@+id/secondLine"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:singleLine="true"
android:ellipsize="marquee"
android:text="Senders Name"
android:textStyle="bold" />
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center_vertical"
android:text="Subject"
android:textStyle="italic" />
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:lines="3"
android:gravity="center_vertical"
android:text="Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla viverra mattis nulla nec sollicitudin." />
</LinearLayout>
</LinearLayout>
答案 0 :(得分:0)
不,它似乎不可能,或者这是我一直遇到的ADT插件中的错误。我只是通过预览行来确保它看起来不错。如果您需要呈现UI图片,可以使用Pencil之类的内容并导入Android Stencils。