有没有办法为渐变定义顶部和底部笔划,或创建复合形状可绘制?:
// option1:
<shape
xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<gradient
android:startColor="#f00"
android:endColor="#0f0"
/>
<stroke
top=1dip, yellow
bottom=1dip, purple
/>
</shape>
// option2
<shape
xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<shape
android:shape="rectangle"
height=1dip, color=yellow />
<gradient
android:startColor="#f00"
android:endColor="#0f0"
/>
<shape
android:shape="rectangle"
height=1dip, color=purple />
</shape>
我认为两者都不可能?
由于
答案 0 :(得分:10)
我想,可以使用layer-list完成。
以下是 res / drawable / layer_list_shape.xml
我使用了硬编码的尺寸..
<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
<item>
<shape android:shape="rectangle">
<size android:width="150dp" android:height="6dp"/>
<solid android:color="#ff0" />
</shape>
</item>
<item android:top="6dp">
<shape android:shape="rectangle" >
<size android:width="150dp" android:height="50dp"/>
<gradient
android:endColor="#0f0"
android:startColor="#f00" />
</shape>
</item>
<item android:top="82dp">
<shape android:shape="rectangle" >
<size android:width="150dp" android:height="6dp"/>
<solid android:color="#ff0" />
</shape>
</item>
<强> RES /布局/ main.xml中强>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/layer_example" />
</LinearLayout>
希望这会有所帮助..
答案 1 :(得分:1)
想不出任何方法可以在XML中实现这一点。
但是你总是可以选择自己画画......
http://developer.android.com/reference/android/view/View.html#onDraw(android.graphics.Canvas)
答案 2 :(得分:1)
根据Vijay C给出的答案,您可以创建一个drawable并包含在任何布局中。之前的答案还可以,但它添加了硬编码的维度,这使得无法在后台使用wrap_content。此外,这样您可以将项目数量从3减少到2。
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item>
<shape android:shape="rectangle">
<solid android:color="#d8dae3" />
</shape>
</item>
<item
android:bottom="2dp"
android:top="2dp">
<shape android:shape="rectangle">
<gradient
android:endColor="@android:color/white"
android:startColor="@android:color/white" />
</shape>
</item>
</layer-list>
答案 3 :(得分:0)
如果您不想使用硬编码尺寸,则可以使用3个视图:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:background="@android:color/black" >
<View
android:layout_width="match_parent"
android:layout_height="1dip"
android:background="@android:color/white"/>
<TextView
android:id="@+id/header"
android:layout_width="match_parent"
android:layout_height="wrap_content"
style="@style/header" />
<View
android:layout_width="match_parent"
android:layout_height="1dip"
android:background="@android:color/white"/>
</LinearLayout>
标题元素具有渐变背景。当然,您也可以使用任何其他布局。