Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> Android開發 >> 高級開發 >> Android資源應用技巧剖析

Android資源應用技巧剖析

編輯:高級開發

在上一篇文章中,我們為大家詳細介紹了有關android Menu編程方式解析的內容,來幫助大家理解android這一操作系統在界面處理上的相關操作。那麼在這篇文章中我們將會針對android資源的相關概念為大家詳細講解有關界面布局的一些應用,加深大家對界面處理的理解。

1.添加菜單menu.add(0, Menu.FIRST+1, 1, R.string.menu_open);

menu.add(0, Menu.FIRST+2, 2, R.string.menu_edit);代碼中的 R.string.menu_open/menu_edit

這些其實是指android資源文件中的ID,映射到具體的資源,這裡是映射到字符串資源menu_open, menu_edit,其具體的值可以看res/values/string.XML在這裡定義了字符串的值:

  1. < ?XML version="1.0" encoding="utf-8"?>
  2. < resources>
  3. < string name="hello">Hello World, HelloActivity!< /string>
  4. < string name="app_name">HelloWorld< /string>
  5. < string name="menu_open">Open< /string>
  6. < string name="menu_edit">Edit< /string>
  7. < string name="menu_update">Update< /string>
  8. < string name="menu_close">Close< /string>
  9. < /resources>

在Android中,Activity顯示的布局也可在android資源中定義,並且以可視化的方式來操作布局對應的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 android:id="@+id/TextVIEw01"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="MyTest OK yest!">< /TextVIEw>
  8. < /LinearLayout>

這裡就描述了布局為LinearLayout,包含了一個TextView,TextVIEw的值為 MyTest.這個XML文件被編譯後,可以使用R.layout.main的ID來從資源中取得。

於是Activity可以用setContentVIEw(R.layout.main)來直接從android資源取得布局,來繪制界面元素。

另一類常用的android資源就是圖片在res/drawable/下面有一些圖片,你也可以新加一些圖片到這裡。然後就可以通過.R.drawable.xxx 的ID來從資源中取得對應的圖片。

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