Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> Android中資源文件用法簡單示例

Android中資源文件用法簡單示例

編輯:關於Android編程

本文實例講述了Android中資源文件用法。分享給大家供大家參考,具體如下:

一、XML文件間資源文件的使用

引用格式:

attribute="@[packagename:]resourcetype/resourceidentifier"

example:

有strings.xml、color.xml、dimen.xml文件,使用其中的參數

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="@dimen/standard_border">
<EditText
android:id="@+id/myEditText"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/stop_message"
android:textColor="@color/opaque_blue"
/>
</LinearLayout>

二、使用系統的資源

使用android本地系統資源要這樣寫:
復制代碼 代碼如下:CharSequence httpError = getString(android.R.string.httpErrorBadUrl);
在XML文件中的使用方法:

<EditText
android:id="@+id/myEditText"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@android:string/httpErrorBadUrl"
android:textColor="@android:color/darker_gray"
/>

注意引用本地資源的文件的時候都加了android這個前綴。

更多關於Android相關內容感興趣的讀者可查看本站專題:《Android資源操作技巧匯總》、《Android文件操作技巧匯總》、《Android操作SQLite數據庫技巧總結》、《Android操作json格式數據技巧總結》、《Android數據庫操作技巧總結》、《Android編程之activity操作技巧總結》、《Android編程開發之SD卡操作方法匯總》、《Android開發入門與進階教程》、《Android視圖View技巧總結》及《Android控件用法總結》

希望本文所述對大家Android程序設計有所幫助。

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