首页 > 代码库 > android shape的使用
android shape的使用
android shape的使用
然后在布局文件里面的Button里面设置如下:
[java] view plain copy
- <Button
- android:id="@+id/button1"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="Button1"
- android:background="@drawable/buttonstyle" />
shape用于设定形状,可以在selector,layout等里面使用,有6个子标签,各属性如下:
[java] view plain copy
- <?xml version="1.0" encoding="utf-8"?>
- <shape xmlns:android="http://schemas.android.com/apk/res/android" >
- <!-- 圆角 -->
- <corners
- android:radius="9dp"
- android:topLeftRadius="2dp"
- android:topRightRadius="2dp"
- android:bottomLeftRadius="2dp"
- android:bottomRightRadius="2dp"/><!-- 设置圆角半径 -->
- <!-- 渐变 -->
- <gradient
- android:startColor="@android:color/white"
- android:centerColor="@android:color/black"
- android:endColor="@android:color/black"
- android:useLevel="true"
- android:angle="45"
- android:type="radial"
- android:centerX="0"
- android:centerY="0"
- android:gradientRadius="90"/>
- <!-- 间隔 -->
- <padding
- android:left="2dp"
- android:top="2dp"
- android:right="2dp"
- android:bottom="2dp"/><!-- 各方向的间隔 -->
- <!-- 大小 -->
- <size
- android:width="50dp"
- android:height="50dp"/><!-- 宽度和高度 -->
- <!-- 填充 -->
- <solid
- android:color="@android:color/white"/><!-- 填充的颜色 -->
- <!-- 描边 -->
- <stroke
- android:width="2dp"
- android:color="@android:color/black"
- android:dashWidth="1dp"
- android:dashGap="2dp"/>
- </shape>
android shape的使用
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。