Android SlidingDrawer处理程序的图像

时间:2012-01-23 22:47:14

标签: android image handle slidingdrawer

我想用我自己的图像作为处理程序的图像。

enter image description here

如何将默认处理程序图像更改为onther图像? 谢谢, 的Eyal。

3 个答案:

答案 0 :(得分:2)

您可以使用ImageView src<SlidingDrawer android:id="@+id/drawer" android:layout_width="fill_parent" android:layout_height="fill_parent" android:handle="@+id/handle" android:content="@+id/content"> <ImageView android:id="@id/handle" android:src="@drawable/my_image" android:layout_width="wrap_content" android:layout_height="fill_parent" /> .... </SlidingDrawer> 指向您的图片作为句柄:

{{1}}

您可能希望将该图像转换为9patch,以便可以拉伸它以填充窗口的高度。

答案 1 :(得分:1)

你应该使用滑块按钮的选择器,这样你就可以为不同的状态(聚焦,非聚焦等......)提供不同的图像。

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:state_focused="true" android:state_pressed="false" android:drawable="@drawable/focused" />
    <item android:state_focused="true" android:state_pressed="true" android:drawable="@drawable/focusedpressed" />
    <item android:state_focused="false" android:state_pressed="true" android:drawable="@drawable/pressed" />
    <item android:drawable="@drawable/defaultbutton" />
</selector>

答案 2 :(得分:0)

将背景图像添加到SlidingDrawer的按钮。