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

首頁 > 系統(tǒng) > Android > 正文

Android Style.xml的應(yīng)用詳解及代碼實(shí)現(xiàn)

2019-12-12 04:56:57
字體:
供稿:網(wǎng)友

Style.xml的妙用

Style.xml之于Android猶如css之于Jsp

妙用

<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"   android:layout_width="match_parent"   android:layout_height="match_parent"   android:orientation="vertical" >   <TextView     android:id="@+id/sensor"     android:layout_width="match_parent"     android:layout_height="match_parent" /> </LinearLayout> 

這樣的布局文件是很正常的。但是不如這樣好

<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"   style="@style/all_match"   android:orientation="vertical" >   <TextView     android:id="@+id/sensor"     style="@style/all_fill" /> </LinearLayout> 

省時(shí)省力,一眼還能看出是什么布局方式。只需要在Style.xml 中添加 這些代碼即可

<style name="all_fill" >     <item name="android:layout_width">fill_parent</item>     <item name="android:layout_height">fill_parent</item>   </style>   <style name="all_match" >     <item name="android:layout_width">match_content</item>     <item name="android:layout_height">match_content</item>   </style>   <style name="width_fill" >     <item name="android:layout_width">fill_parent</item>     <item name="android:layout_height">match_content</item>   </style>   <style name="height_fill" >     <item name="android:layout_width">match_content</item>     <item name="android:layout_height">fill_parent</item>   </style> 

感謝閱讀,希望能幫助到大家,謝謝大家對(duì)本站的支持!

發(fā)表評(píng)論 共有條評(píng)論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 云和县| 牡丹江市| 双城市| 凯里市| 揭阳市| 攀枝花市| 阳东县| 恩施市| 宜昌市| 霸州市| 云和县| 威远县| 启东市| 神农架林区| 青州市| 凤凰县| 六盘水市| 陵水| 运城市| 莱州市| 淮北市| 宁强县| 聂拉木县| 北宁市| 拉萨市| 六枝特区| 龙江县| 兰考县| 称多县| 三河市| 阳城县| 鄂托克前旗| 黔南| 金阳县| 略阳县| 溧阳市| 秦皇岛市| 九寨沟县| 柳河县| 镇安县| 阳高县|