国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 系統 > Android > 正文

Android給布局、控件加陰影效果的示例代碼

2019-10-22 18:21:49
字體:
來源:轉載
供稿:網友

增加陰影效果,讓控件或者布局看起來有立體的效果,總的來說有兩種解決方案。

1,直接使用屬性: android/45708.html">android/104884.html">android:elevation="4dp"這樣一句代碼,就實現了效果,elevation表示海拔,就是布局的z軸的高度,調整高度,可以選擇陰影的輕重。

<TextView         android:layout_width="0dp"        android:layout_height="match_parent"        android:layout_weight="1"        android:gravity="center"        android:elevation="4dp"        android:background="@drawable/home_waitcourse_yellow_shape"        android:textColor="@color/foorYellow"          android:text="報道"/>

2,這種方式就需要寫點代碼了,但是也不多,是通過寫一個xml來實現的。

<?xml version="1.0" encoding="utf-8"?> <layer-list xmlns:android="http://schemas.android.com/apk/res/android" >   <!-- 陰影部分 -->   <!-- 個人覺得更形象的表達:top代表下邊的陰影高度,left代表右邊的陰影寬度。其實也就是相對應的offset,solid中的顏色是陰影的顏色,也可以設置角度等等 -->   <item     android:left="2dp"     android:top="2dp"     android:right="2dp"     android:bottom="2dp">     <shape android:shape="rectangle" >       <gradient         android:angle="270"         android:endColor="#0F000000"         android:startColor="#0F000000" />       <corners         android:bottomLeftRadius="6dip"         android:bottomRightRadius="6dip"         android:topLeftRadius="6dip"         android:topRightRadius="6dip" />     </shape>   </item>   <!-- 背景部分 -->   <!-- 形象的表達:bottom代表背景部分在上邊緣超出陰影的高度,right代表背景部分在左邊超出陰影的寬度(相對應的offset) -->   <item     android:left="3dp"     android:top="3dp"     android:right="3dp"     android:bottom="5dp">     <shape android:shape="rectangle" >       <gradient         android:angle="270"         android:endColor="#FFFFFF"         android:startColor="#FFFFFF" />       <corners         android:bottomLeftRadius="6dip"         android:bottomRightRadius="6dip"         android:topLeftRadius="6dip"         android:topRightRadius="6dip" />     </shape>   </item> </layer-list> 

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持VEVB武林網。


注:相關教程知識閱讀請移步到Android開發頻道。
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 如东县| 丰城市| 嘉定区| 北碚区| 平阳县| 威海市| 惠水县| 莱阳市| 德阳市| 宁化县| 冕宁县| 嵩明县| 元谋县| 资源县| 马尔康县| 安阳市| 巴彦县| 娄烦县| 合山市| 登封市| 青海省| 安徽省| 遂宁市| 小金县| 襄垣县| 乐清市| 县级市| 奉新县| 鄂州市| 泸溪县| 彭泽县| 五大连池市| 博白县| 陈巴尔虎旗| 福州市| 咸阳市| 西乌| 隆德县| 定襄县| 方山县| 吉安市|