Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> Android開發 >> 高級開發 >> Android使用XML相關技巧解析

Android使用XML相關技巧解析

編輯:高級開發

大家可能還記得,我們在上一篇文章中向大家詳細介紹了android ListVIEw的相關應用,它主要就是針對於可視化編程。在這裡我們會通過android使用XML來為大家詳細介紹另一種可視化編程方法

就如跨平台UI界面庫一樣,android也是使用XML文件來存貯界元素持布局,現在流行的一些界面組件都是采用android使用XML的方式。

在android中,res/layout資源目錄下,會有一個或多個.xml文件,這就是一個界面的布局文件。我們打開一個來看看。我打開當前工程目錄下的res/layout/main.XML文件。

  1. < ?XML version="1.0" encoding="utf-8"?>
  2. < LinearLayout XMLns:android=
    "http://schemas.android.com/apk/res/android"
  3. android:orIEntation="vertical"
  4. android:layout_width="fill_parent"
  5. android:layout_height="fill_parent"
  6. >
  7. < TextVIEw
  8. android:layout_width="fill_parent"
  9. android:layout_height="wrap_content"
  10. android:text="@string/hello"
  11. android:id="@+id/mainvIEw"
  12. />
  13. < /LinearLayout>

這個文件很簡單的布局是指用了一個LinearLayout來布局,裡面只有一個TextView界面元素,也就是一個View.當Activity加載View時,就可以在onCreate中直接加載。this.setContentVIEw(R.layout.main);其中R.layout.main就是一個素引值,是由android開發環境編譯生成的,是映射到res/layout/main.XML的。

所以setContentVIEw(R.layout.main);等價於,按裝main.XML的布局來配置一個layout.然後加載,與如下代碼效果一致

  1. LinearLayout layout = new LinearLayout(this);
  2. TextVIEw tv = new TextVIEw(this);
  3. tv.setText(R.string.hello);
  4. layout.addVIEw(tv);
  5. this.setContentVIEw(layout);

其中R.string.hello也是一個資源映射的ID,是指加載res/values/string.XML中的hello對應的值。

android使用XML的相關方法就為大家介紹到這裡。

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved