1

在 API 8 中,我们不能使用ActionBar. 所以我使用水平布局(布局顶部)和一组ButtonssetContentView用于我的其他应用程序。现在我实现Listview了包含图像和文本的自定义。那么如何实现setContentView(顶部线性布局)或ActionBar以上Listview?我应该使用哪一个?怎么做?

onCreate方法中

public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);     
    setListAdapter(new MobileArrayAdapter(this, MOBILE_OS,mp));
} 

在xml中

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:padding="5dp" >

<ImageView
    android:id="@+id/logo"
    android:layout_width="0dp"
    android:layout_height="45dp"
    android:layout_marginLeft="5dp"
    android:layout_weight="10"
    android:src="@drawable/play" />

<LinearLayout
    android:layout_width="0dp"
    android:layout_height="45dp"
    android:layout_weight="40.00"
    android:orientation="vertical" >

    <TextView
        android:id="@+id/Tittle"
        android:layout_width="match_parent"
        android:layout_height="27dp"
        android:text="@+id/Tittle"
        android:layout_gravity="center_horizontal"
        android:textSize="18sp" >

    </TextView>

    <TextView
        android:id="@+id/Descriprion"
        android:layout_width="match_parent"
        android:layout_height="18dp"
        android:text="@+id/Descriprion"
        android:layout_gravity="center_horizontal"
        android:textSize="16sp" >

    </TextView>
</LinearLayout>


<ImageView
    android:id="@+id/options"
    android:layout_width="0dp"
    android:layout_height="45dp"
    android:layout_marginRight="20dp"
    android:layout_marginTop="5dp"
    android:layout_weight="9.52"
    android:background="@drawable/btn_default_holo_light"
    android:src="@drawable/options" />

4

1 回答 1

0

您可以将自定义顶部栏添加到setContentView(). 然后在您的getView()自定义布局中。Custom AdapterinflateListView

这是使用自定义的教程ListView

于 2013-08-02T14:05:55.210 回答