我有一个选择器的代码:
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<!-- Button Focused-->
<item android:state_focused="true"
android:state_pressed="false"
android:drawable="@drawable/gradient_background"
/>
<!-- Button Focused Pressed-->
<item android:state_focused="true"
android:state_pressed="true"
android:drawable="@drawable/gradient_background"
/>
<!-- Button Pressed-->
<item android:state_focused="false"
android:state_pressed="true"
android:drawable="@android:drawable/ic_search_category_default"
/>
<!-- Button Default Image-->
<item android:drawable="@drawable/gradient_background"/>
</selector>
在使用这个选择器的活动中,我有这个:
<ListView
android:id="@+id/contactsView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@+id/searchButton"
android:divider="@color/DarkGoldenrod"
android:dividerHeight="0.1dp"
android:listSelector="@drawable/list_selector"
android:drawSelectorOnTop="true" />
现在,这是一个列表视图项目的示例,当您单击它并按住它时...
我的问题是:无论如何我可以使那张图片变小并向右对齐吗?
谢谢你。