是否可以借助XML创建多色笔划?我想在这里创建精确的视图。
由于
答案 0 :(得分:0)
你可以通过创建一个带渐变的可绘制形状并使其成为父母的背景来使用技巧......这样的事情:
gradient_stroke.xml(在res / drawable中):
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item>
<shape android:shape="rectangle" >
<gradient
android:angle="180"
android:startColor="#fff96200"
android:centerColor="#fffff60f"
android:endColor="#fff96200"
android:centerX="50%"
>
</gradient>
<corners android:radius="5dp"></corners>
</shape>
</item>
your_view.xml:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="wrap_content"
android:padding="2dp"
android:background="@drawable/gradient_stroke"
android:layout_height="wrap_content">
<Button android:text="Submit"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@color/green"
android:id="@+id/button"/>
</LinearLayout>
只是一个想法 - 玩它来获得所需的价值......