嗨,我是Android的新手,这是第一次来到这里.. 如何使用渐变效果从xml设置EditText背景。 我有从xml设置背景的代码。但这只能提供简单的背景
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle" android:padding="10dp">
<solid android:color="#ABCDEF"/>
<stroke android:width="2dp" android:color="#000000" />
<corners
android:bottomRightRadius="15dp"
android:bottomLeftRadius="15dp"
android:topLeftRadius="15dp"
android:topRightRadius="15dp"/>
</shape>
答案 0 :(得分:0)
您可以在形状标记
中使用渐变标记<gradient
android:angle="0"
android:startColor="#FFea5626"
android:endColor="#80ec9d83"
android:type="sweep"
/>
根据您的需要,您可以更改角度 你可以改变为线性的类型 取决于渐变效果的起始颜色和结束颜色