本文介绍了安卓expandlistview箭头的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我知道如何使一个expandedlistview,但我不知道我应该用什么看箭头向下和向上,怎么请?

当我打开一组箭头变成下来,当我关闭它,箭头会变得像

主要XML

 <?XML版本=1.0编码=UTF-8&GT?;
< LinearLayout中的xmlns:机器人=htt​​p://schemas.android.com/apk/res/android
    机器人:layout_width =FILL_PARENT
    机器人:layout_height =FILL_PARENT
    机器人:方向=垂直> < ExpandableListView    机器人:ID =@ + ID / ExpList    机器人:layout_height =match_parent    机器人:layout_width =match_parent    机器人:groupIndicator =@空/>< / LinearLayout中>

XML集团

 <?XML版本=1.0编码=UTF-8&GT?;
< LinearLayout中的xmlns:机器人=htt​​p://schemas.android.com/apk/res/android
    机器人:layout_width =FILL_PARENT
    机器人:layout_height =55dip
    机器人:背景=#FF0000
    机器人:方向=垂直>
    <的TextView
        机器人:ID =@ + ID / tvGroup
        机器人:layout_width =FILL_PARENT
        机器人:layout_height =WRAP_CONTENT
        机器人:layout_marginRight =15dp
        机器人:文字颜色=#000000
        机器人:TEXTSIZE =17dip/>< / LinearLayout中>

子XML

 <?XML版本=1.0编码=UTF-8&GT?;
< LinearLayout中的xmlns:机器人=htt​​p://schemas.android.com/apk/res/android
    机器人:layout_width =match_parent
    机器人:layout_height =55dip
    机器人:背景=#FF0000
    机器人:方向=垂直>
    <的TextView
        机器人:ID =@ + ID / tvChild
        机器人:layout_width =FILL_PARENT
        机器人:layout_height =WRAP_CONTENT
        机器人:文字颜色=#000000
        机器人:TEXTSIZE =17dip/>< / LinearLayout中>


解决方案

从XML code删除此行的android:groupIndicator =@空

I know how to make an expandedlistview, but I don't know what should i use to see the arrow down and up , how please ?

like when i open a group the arrow becomes down and when i close it , the arrow becomes up

Main 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="fill_parent"
    android:orientation="vertical" >

 <ExpandableListView

    android:id="@+id/ExpList"

    android:layout_height="match_parent"

    android:layout_width="match_parent"

    android:groupIndicator="@null" /> 

</LinearLayout>

Group 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="55dip"
    android:background="#FF0000"
    android:orientation="vertical" >


    <TextView
        android:id="@+id/tvGroup"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_marginRight="15dp"
        android:textColor="#000000"
        android:textSize="17dip" />

</LinearLayout>

child xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="55dip"
    android:background="#FF0000"
    android:orientation="vertical" >


    <TextView
        android:id="@+id/tvChild"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:textColor="#000000"
        android:textSize="17dip" />

</LinearLayout>
解决方案

remove this line from your xml code android:groupIndicator="@null"

这篇关于安卓expandlistview箭头的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

11-03 14:41