3

ListView の行を構成するいくつかの要素を含むカスタム xml ファイルを作成しました。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>

リストのスクリーンショット

4

1 に答える 1

0

いいえ、それは可能ではないようです。または、これは私が常に遭遇している ADT プラグインのバグです。行をプレビューして、問題がないことを確認するだけで済みます。UI イメージをレンダリングする必要がある場合は、Pencilなどを使用してAndroid Stencilsをインポートできます。

于 2012-10-02T15:48:10.283 に答える