我正在尝试实现这样的列表背景:
这是实现具有笔划和两个圆角的矩形的代码。
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle">
<solid android:color="#dddddd" />
<stroke android:width="2dp" android:color="#aaaaaa" />
<corners
android:bottomLeftRadius="0.1dp"
android:bottomRightRadius="15dp"
android:topLeftRadius="0.1dp"
android:topRightRadius="15dp" />
</shape>
我现在需要做的是在左边创建绿色垂直条带。
我的猜测是左侧可能有一个粗绿色的笔划,或者在灰色笔划上方放置一个矩形,但我还没能做到其中任何一个。
有谁知道怎么做?
答案 0 :(得分:2)
只需制作一个带有绿色背景的简单虚拟视图。
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingBottom="20dp"
android:background="@drawable/list_item_default">
<View
android:layout_width="3dp"
android:layout_height="match_parent"
android:id="@+id/dummy"
android:layout_alignParentLeft="true"
android:background="#6BB726"/>
<ImageView
android:id="@+id/image"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:src="@drawable/image_button"/>
<LinearLayout
android:layout_width="match_parent"
android:orientation="vertical"
android:layout_toRightOf="@id/dummy"
android:layout_toLeftOf="@id/image"
android:id="@+id/textHolder"
android:layout_height="wrap_content">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:layout_marginLeft="10dp"
android:text="Aung San"
android:textColor="@android:color/black"
android:textSize="30sp"/>
<!-- Two other TextViews -->
</LinearLayout>
</RelativeLayout>
答案 1 :(得分:1)
您是否尝试使用9-patch,我认为绘制完全相同的背景会非常容易。