水平回收视图中的 9 补丁背景
9-patch background in horizontal recyclerview
我正在使用水平 RecyclerView:
<android.support.v7.widget.RecyclerView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:id="@+id/chronology_rv_players"/>
其中包含以下几个 CardView:
<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.CardView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="wrap_content"
android:layout_height="45dp"
android:layout_margin="3dp"
app:cardCornerRadius="10dp"
app:cardBackgroundColor="@android:color/transparent"
app:cardElevation="0dp"
app:cardMaxElevation="0dp"
android:padding="0dp">
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:orientation="horizontal"
android:padding="0dp">
...
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="0dp">
<ImageView
android:id="@+id/iv_player_list_right"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:src="@drawable/background_player_right"
android:scaleType="fitXY"
android:padding="0dp"/>
...
</RelativeLayout>
</LinearLayout>
</android.support.v7.widget.CardView>
drawable "background_player_right" 是以下 9-patch 图像:
然而,9-patch 图像直到 CardView 图像的右端才拉伸:
我认为这是因为我使用的是水平 RecyclerView(同样我无法将文本对齐到 CardView 的右侧),但我不知道如何获得预期结果。
你有什么想法吗?
跳过 ImageView 并将 9 patch 直接设置为 RelativeLayout 的背景。
我正在使用水平 RecyclerView:
<android.support.v7.widget.RecyclerView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:id="@+id/chronology_rv_players"/>
其中包含以下几个 CardView:
<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.CardView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="wrap_content"
android:layout_height="45dp"
android:layout_margin="3dp"
app:cardCornerRadius="10dp"
app:cardBackgroundColor="@android:color/transparent"
app:cardElevation="0dp"
app:cardMaxElevation="0dp"
android:padding="0dp">
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:orientation="horizontal"
android:padding="0dp">
...
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="0dp">
<ImageView
android:id="@+id/iv_player_list_right"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:src="@drawable/background_player_right"
android:scaleType="fitXY"
android:padding="0dp"/>
...
</RelativeLayout>
</LinearLayout>
</android.support.v7.widget.CardView>
drawable "background_player_right" 是以下 9-patch 图像:
然而,9-patch 图像直到 CardView 图像的右端才拉伸:
我认为这是因为我使用的是水平 RecyclerView(同样我无法将文本对齐到 CardView 的右侧),但我不知道如何获得预期结果。
你有什么想法吗?
跳过 ImageView 并将 9 patch 直接设置为 RelativeLayout 的背景。