android学习笔记33——资源ShapeDrawable
生活随笔
收集整理的這篇文章主要介紹了
android学习笔记33——资源ShapeDrawable
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
ShapeDrawable
ShapeDrawable用于定義一個基本的幾何圖像(如,矩形、圓形、線條.......)。
定義ShapeDrawable的XML文件的根元素是<shape.../>,該元素可指定如下屬性:
android:shape=["rectangle"|"oval"|"ling"|"ring"]——指定定義那種類型的幾何圖形。
實例如下:橢圓、漸變背景的文本框
drawable資源文件==》myshape1.xml==> <?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android"android:shape="rectangle" ><!-- 設置填充顏色 --><solid android:color="#fff" /><!-- 設置四周的內邊距 --><paddingandroid:bottom="7dp"android:left="7dp"android:right="7dp"android:top="7dp" /><!-- 設置邊框 --><strokeandroid:width="3dip"android:color="#ff0" /></shape>myshape2.xml==> <?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android"android:shape="rectangle" ><!-- 定義填充漸變色 angle,角度 --><gradientandroid:angle="45"android:endColor="#80FF00FF"android:startColor="#FFFF0000" /><!-- 設置四周的內邊距 --><paddingandroid:bottom="7dp"android:left="7dp"android:right="7dp"android:top="7dp" /><!-- 設置圓角矩形 --><corners android:radius="8dp" /></shape>myshape3.xml==> <?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android"android:shape="oval" ><!-- 定義填充漸變色 --><gradientandroid:angle="45"android:endColor="#00f"android:startColor="#ff0"android:type="sweep" /><!-- 設置四周的內邊距 --><paddingandroid:bottom="7dp"android:left="7dp"android:right="7dp"android:top="7dp" /><!-- 設置圓角矩形 --><corners android:radius="8dp" /></shape>布局文件==》 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"xmlns:tools="http://schemas.android.com/tools"android:layout_width="match_parent"android:layout_height="match_parent"android:orientation="vertical"tools:context=".MainActivity" ><EditTextandroid:layout_width="match_parent"android:layout_height="wrap_content"android:background="@drawable/myshape1" /><EditTextandroid:layout_width="match_parent"android:layout_height="wrap_content"android:background="@drawable/myshape2" /><EditTextandroid:layout_width="match_parent"android:layout_height="wrap_content"android:background="@drawable/myshape3" /> </LinearLayout>運行效果:
?
轉載于:https://www.cnblogs.com/YYkun/p/5848393.html
總結
以上是生活随笔為你收集整理的android学习笔记33——资源ShapeDrawable的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: ElasticSearch聚合aggs入
- 下一篇: 百钱百鸡问题