我有可扩展的列表视图以及如何将图标添加到listview。任何人帮我这个。
谢谢, 拉吉
答案 0 :(得分: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"
/>
假设您想要将图像放在子元素中,您可以创建如上所述的相同xmls。
然后使用适配器设置值。 请勿复制代码,因为它可能不适合您的情况尝试创建您的要求。
此链接可能会帮助您了解详细信息。
http://www.androidhive.info/2013/07/android-expandable-list-view-tutorial/