android 里用shape画圆,怎么填充颜色
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了android 里用shape画圆,怎么填充颜色相关的知识,希望对你有一定的参考价值。
背景色那里改一下就行了<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="oval"
android:useLevel="false">
<!--背景色-->
<solid android:color="@color/redbg"/>
<!-- 边框色 -->
<stroke android:width="1dp"
android:color="#ee5859"/>
<size android:width="95dp"
android:height="95dp"/>
</shape> 参考技术A <solid android:color="#ff0000" />
solid:实心,就是填充的意思
android:color指定填充的颜色
已经有人回答过这样的问题,不好意思拿来,贴个链接吧
http://zhidao.baidu.com/link?url=ezMQEcPplBPj0o0edHir99LAkAcwAdVUrsU5DaXiwEltgfwD_SpzSBonZrBujNflo0nvhIEieGrPuXugBM8XWpd5cG0JKim_4P0bk1Cx5ty本回答被提问者和网友采纳
以上是关于android 里用shape画圆,怎么填充颜色的主要内容,如果未能解决你的问题,请参考以下文章