我使用的是水平的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&#34; background_player_right&#34;是以下9补丁图片:
但是,9-patch图像直到CardView图像的右端才会延伸:
我认为这是因为我使用的是水平的RecyclerView(类似地我无法将文本对齐到CardView的右侧),但我不知道如何获得预期的结果。
你有什么想法吗?
答案 0 :(得分:1)
跳过ImageView并将9补丁直接设置为RelativeLayout的背景。