其他分享
首页 > 其他分享> > android – 更改EditText焦点边框

android – 更改EditText焦点边框

作者:互联网

我想问一下如何在焦点上改变EditText边框.我想将原始的橙色渐变改为我自己的.

解决方法:

嗨,你可以在drawable文件夹中创建这样的渐变.

  <?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item>
   <shape android:shape="rectangle">
        <gradient
                android:startColor="#5a5a5a88"
                android:endColor="#14141488"
                android:angle="270" android:centerX="0.25"/>

   </shape>
</item>
<item android:top="80dp">
<shape android:shape="rectangle">
        <gradient
                android:startColor="#5aff5a88"
                android:endColor="#14ff1488"
                android:angle="270" android:centerX="0.25"/>

</shape>

标签:android,android-theme,android-ui
来源: https://codeday.me/bug/20190725/1537853.html