现在的位置: 首页 > 综合 > 正文

Android开源项目——饭否的学习点滴(一)

2013年01月08日 ⁄ 综合 ⁄ 共 372字 ⁄ 字号 评论关闭

1. 圆角背景之shape


background_login_div_bg.xml

<?xml version="1.0" encoding="UTF-8"?> 
<shape xmlns:android="http://schemas.android.com/apk/res/android"> 
    <solid android:color="#88FFFFFF" /> 
    <corners android:topLeftRadius="10dp" android:topRightRadius="10dp"
             android:bottomLeftRadius="10dp" android:bottomRightRadius="10dp"/> 

</shape>

代码中的使用:

android:background="@drawable/background_login_div_bg"

抱歉!评论已关闭.