如何在SlidingMenu中为选定的侧边菜单项添加下划线?

时间:2015-03-26 06:56:00

标签: android listview slidingmenu

我想在我选择的侧边菜单项下加一个下划线。有没有办法只在项目名称下加一个下划线而不是突出显示整个项目?

1 个答案:

答案 0 :(得分:2)

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android"
    <item android:drawable="your drawable when pressed" android:state_pressed="true"/>
    <item android:drawable="your drawable when selected" android:state_selected="true"/>
    <item android:drawable="your drawable when activated" android:state_activated="true"/>

</selector>

上面的代码是一个简单的选择器,您可以从中创建所需的代码,还需要将android:choiceMode="singleChoice"添加到列表视图中,并添加选择器listView.setSelector(R.drawable.your_selector);或者您可以添加xml比如android:listSelector="@drawable/your_selector"

根据您的需要选择更好的选择器

<?xml version="1.0" encoding="utf-8"?>

<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_selected="true">
    <layer-list>
        <item>
            <shape>
                <solid android:color="#ffffff" />
            </shape>
        </item>
        <item android:bottom="3dp">
            <shape>
                <solid android:color="#ff0000" />
            </shape>
        </item>
    </layer-list>
</item>
</selector>

希望它有所帮助。