LinearLayout设置白色背景、灰色边框、倒圆角

来源:互联网 发布:淘宝店的食品生产编号 编辑:程序博客网 时间:2024/05/19 13:27



drawable-hdpi下面建一个xml,例如linearlayout.xml

<?xml version="1.0" encoding="utf-8"?> 
<shape xmlns:android="http://schemas.android.com/apk/res/android">   
    <solid android:color="#ffffff" /> 
    <stroke 
        android:width="0.01dp"        
        android:color="#bfbfbf" /> 
    <corners android:topLeftRadius="10dp"  
                    android:topRightRadius="10dp"   
                android:bottomRightRadius="10dp"  
                android:bottomLeftRadius="10dp"/>   
</shape> 

 

在布局文件中写:

<LinearLayout
      android:orientation="vertical"
      android:layout_width="0dp"
      android:layout_height="90dip"
      android:layout_weight="10"
     
      android:background="@drawable/linearlayout"
     >

0 0
原创粉丝点击