这里谈到的简化布局不是教你如何使用<includ>
标签、<merge>
标签或者ViewStub
,本篇介绍的是怎么利用<style>
标签减少布局文件的代码行数。
android支持使用XML文件编写布局,我们甚至能只用标签属性初始化控件就能达到UI妹子设计的页面效果。但是,我们在标签中定义了大量属性会使xml文件看起来很臃肿,如果布局很复杂会很难看清布局的层级。
想想一个布局文件就有400多行看起来会有多费劲。举个例子,一个表单页面定义一个展示文本可能会写如下代码:
<TextView
android:id="@+id/et_contact"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/tv_xxdz"
android:layout_marginLeft="@dimen/padding_margin_5"
android:layout_marginTop="29dp"
android:layout_toRightOf="@id/tv_llr"
android:textColor="@color/sub1_text_color"
android:textSize="14sp"/>
仅一个控件就有10行代码,你可能在一屏里只能看到三个控件的代码,不易阅读。下面我们抽出一些代码试试。
每个控件都有宽高属性,我们可以在styles.xml中定义如下代码:
<style name="WrapWrap">
<item name="android:layout_width">wrap_content</item>
<item name="android:layout_height">wrap_content</item>
</style>
这个style名称由两个单词组成,第一个表示宽、第二个表示高。如果控件的宽高是不明确的,我们也可以扩展出下面的三个style:
<style name="MatchMatch">
<item name="android:layout_width">match_parent</item>
<item name="android:layout_height">match_parent</item>
</style>
<style name="WrapMatch">
<item name="android:layout_width">wrap_content</item>
<item name="android:layout_height">match_parent</item>
</style>
<style name="MatchWrap">
<item name="android:layout_width">match_parent</item>
<item name="android:layout_height">wrap_content</item>
</style>
表单可能要显示多个展示文本,它们的风格都是一样的,我们可以再定义一个style:
<style name="PrintTitle" parent="WrapWrap">
<item name="android:textColor">@android:color/black</item>
<item name="android:textSize">@dimen/print_text</item>
<item name="android: layout_marginTop">29dp</item>
<item name="android: layout_marginLeft">5dp</item>
</style>
使用了上面的主题后之前的TextView看起来是这样的:
<TextView
android:id="@+id/et_contact"
style="@style/PrintTitle"
android:layout_below="@id/tv_xxdz"
android:layout_toRightOf="@id/tv_llr"/>
代码行数减少了一半有没有。
如果我们大量运用这种方式,那么表单的一行可能是这样子:
<LinearLayout
android:id="@+id/ll_actual_time"
style="@style/CreateOrderSubItem">
<TextView
style="@style/CreateOrderKey"
android:text="@string/actual_time" />
<TextView
android:id="@+id/tv_actual_time"
style="@style/CreateOrderValue" />
<ImageView style="@style/EnterArrow" />
</LinearLayout>
这样的布局代码看起来非常清晰,我的密集恐惧症也很少犯了。当然,这篇文章只是一个引子,怎么简约你的layout文件使更易阅读需要你细细琢磨。