欢迎来到代码驿站!

Android代码

当前位置:首页 > 移动开发 > Android代码

Android Style.xml的应用详解及代码实现

时间:2021-11-01 10:11:47|栏目:Android代码|点击:

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> 

省时省力,一眼还能看出是什么布局方式。只需要在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> 

感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!

上一篇:Android注解ButterKnife的基本使用

栏    目:Android代码

下一篇:TextView实现图文混合编排的方法

本文标题:Android Style.xml的应用详解及代码实现

本文地址:http://www.codeinn.net/misctech/182025.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有