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

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"


你可能感兴趣的:(Android开源项目——饭否的学习点滴(一))