1

我有可扩展的列表视图以及如何将图标添加到列表视图。任何机构都可以帮助我。

谢谢,拉吉

4

1 回答 1

0

首先,您需要向我们展示您为应用程序编写的关于可扩展列表视图的简单代码。但我仍然假设您已经为子布局和父布局创建了单独的 XMLS。

为您的父布局示例创建一个单独的 xlm:

<?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:orientation="vertical" 
android:background="@color/activity_main_bg">


<Imageview
        android:id="@+id/img_thumb
        android:layout_width="match_parent"
        android:layout_height="odp"
        android:


<TextView 
    android:id="@+id/ch1_group"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:paddingLeft="?android:attr/expandableListPreferredItemPaddingLeft"
    android:textSize="23sp"
    android:textColor="@color/black"
    android:background="@drawable/backg"
    />

假设您想将图像放入您的子元素中,您可以创建与上述相同的 xml。

然后使用适配器设置值。不要复制代码,因为它可能不适用于您的情况,请尝试根据您的要求创建。

此链接可能会帮助您了解详细信息。

http://www.androidhive.info/2013/07/android-expandable-list-view-tutorial/

于 2013-10-14T21:17:58.643 回答