解析Android開發最佳化之:對介面UI的最佳化詳解(二)

來源:互聯網
上載者:User

如果我們在每個xml檔案中都把相同的布局都重寫一遍,一個是代碼冗餘,可讀性很差;另一個是修改起來比較麻煩,對後期的修改和維護非常不利。所以,一般情況下,我們需要把相同布局的代碼單獨寫成一個模組,然後在用到的時候,可以通過<include /> 標籤來重用layout的代碼。

常見的,有的應用在最上方會有一個標題列。類似所示。

圖 標題列的樣本

如果項目中大部分Activity的布局都包含這樣的標題列,就可以把標題列的布局單獨寫成一個xml檔案。複製代碼 代碼如下:<RelativeLayout

android:layout_width="fill_parent"

android:layout_height="wrap_content"

android:gravity="center"

android:background="@drawable/navigator_bar_bg"

xmlns:android="http://schemas.android.com/apk/res/android">

<TextView

android:id="@android:id/title"

android:layout_width="fill_parent"

android:layout_height="wrap_content"

android:layout_centerVertical="true"

android:gravity="center"

android:hint="title"

android:textAppearance="?android:attr/textAppearanceMedium" />

<ImageView

android:id="@android:id/closeButton"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:layout_alignParentRight="true"

android:src="@drawable/close" />

</RelativeLayout>

我們將上面的xml檔案命名為“navigator_bar.xml”,其它需要標題列的Activity的xml布局檔案就可以直接引用此檔案了。複製代碼 代碼如下:<include layout="@layout/navigator_bar" />

複製代碼 代碼如下:經驗分享:

一般情況下,在項目的初期就能夠大致確定整體UI的風格。所以早期的時候就可以做一些規劃,將通用的模組先寫出來。

下面是可能可以抽出的共用的布局:

1)背景。有的應用在不同的介面裡會用到統一的背景。後期可能會經常修改預設背景,所以可以將背景做成一個通用模組。

2)頭部的標題列。如果應用有統一的頭部標題列,就可以抽取出來。

3)底部的導覽列。如果應用有導覽列,而且大部分的Activity的底部導覽列是相同的,就可以將導覽列寫成一個通用模組。

4)ListView。大部分應用都會用到ListView展示多條資料。項目後期可能會經常調整ListView的風格,所以將ListView作為一個通用的模組比較好。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.