shape.gradient使用示例

前端之家收集整理的这篇文章主要介绍了shape.gradient使用示例前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
android:scrollbarTrackVertical="@drawable/scrollbar_vertical_track" //滚动条背景

Android:scrollbarThumbVertical="@drawable/scrollbar_vertical_thumb" //滚动条


scrollbar_vertical_track.xml

<?xml version="1.0" encoding="utf-8"?>

<shape xmlns:android="http://schemas.android.com/apk/res/android">
<gradient android:startColor="#3333FF" android:endColor="#8080FF"
android:angle="0"/>
<corners android:radius="6dp" />
</shape>

scrollbar_vertical_thumb.xml

<?xml version="1.0" encoding="utf-8"?>

http://schemas.android.com/apk/res/android"> <gradient android:startColor="#505050" android:endColor="#C0C0C0" android:angle="0"/> <corners android:radius="0dp" /> </shape>

原文链接:https://www.f2er.com/xml/294258.html

猜你在找的XML相关文章