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

来源:互联网 发布:淘宝美国直邮有假货吗 编辑:程序博客网 时间:2024/05/16 11:22


 做项目的时候总会遇到一些问题,比如布局中某个布局的背景设置成圆角,下面来看看:drawable-hdpi下面建一个xml,例如linearlayout.xml

<span style="font-size:18px;"><?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> </span>


在布局文件中写:


<span style="font-size:18px;"><LinearLayout       android:orientation="vertical"      android:layout_width="0dp"      android:layout_height="90dip"      android:layout_weight="10"            android:background="@drawable/linearlayout"     ></span>



0 0
原创粉丝点击