定製抽拉匹配的父我有一個ListView
及其項已箭頭對準結束時,像這樣:位圖在下面API 23
箭頭被設置的背景下,這是一個自定義繪製:
background_listitem.xml
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item>
<shape>
<solid android:color="@android:color/white" />
</shape>
</item>
<item
android:width="24dp"
android:height="24dp"
android:gravity="right|end|center_vertical"
android:right="@dimen/preferred_margin">
<bitmap android:src="@drawable/ic_chevron_right_black_24dp" />
</item>
</layer-list>
隨着API> 22這是偉大的工作,但22和背景下面看起來是這樣的:
這是我怎麼設置背景:
listitem_layout.xml
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/listitem_container"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/background_listitem"
android:foreground="?attr/selectableItemBackgroundBorderless"
android:padding="@dimen/preferred_margin">
...
</RelativeLayout>
有沒有什麼辦法解決這個問題沒有添加箭頭作爲ImageView
?
謝謝你,夥計,我的大腦是完全炸後幾個小時,試圖解決這個 – josemigallas