對于android初學者來講,首先是要了解資源文件資源的類型和布局,然后再是資源文件的使用,資源列表如下:
資源文件的使用分為在代碼中使用和在其他資源文件中引用該資源文件。在我們編譯一個 Android 應用時,Android 會自動生成一個 R 類,在該類中根據(jù)不同的資源類型又生 成了相應的內(nèi)部類,該類包含了系統(tǒng)中使用到的所有資源文件的標示,其內(nèi)容如下所示。
package com.amaker.mp;
// 資源類
public final class R {
// 數(shù)組
public static final class array {
public static final int faultRecords=0x7f060000;
}
// 屬性
public static final class attr {
}
// 顏色
public static final class color {
public static final int black=0x7f040001;
public static final int red=0x7f040000;
}
// 圖片
public static final class drawable {
public static final int icon=0x7f020001;
public static final int logo2=0x7f020002;
}
// ID 標示
public static final class id {
public static final int licenseEditText=0x7f070022;
public static final int lngEditText=0x7f070001;
}
// 布局
public static final class layout {
public static final int custom_dialog=0x7f030000;
public static final int custom_dialog1=0x7f030001;
}
// 字符串
public static final class string {
public static final int app_name=0x7f050001;
public static final int hello=0x7f050000; } }
1.在代碼中使用資源文件 在代碼中訪問資源文件,我們是通過使用 R 資源類中定義的資源文件類型和資源文件 名稱來訪問的。具體格式為:R.資源文件類型.資源文件名稱。例如:
// 設置 Activity 顯示的布局視圖
setContentView(R.layout.login_system);
// 獲得 Button 實例
cancelBtn = (Button)findViewById(R.id.cancelButton);
loginBtn = (Button)findViewById(R.id.loginButton);
// 獲得 TextView 實例
userEditText = (EditText)findViewById(R.id.userEditText);
pwdEditText = (EditText)findViewById(R.id.pwdEditText);
}
另外,除了訪問用戶自己定義的資源文件,還可以訪問系統(tǒng)中的資源文件。大部分的 資源文件被定義在 android 包下的 R 類中。訪問系統(tǒng)中的資源文件格式為:android.R.資源 文件類型.資源文件名稱。例如:
int i ;
// 動畫
i = android.R.anim.fade_in;
// 數(shù)組
i = android.R.array.emailAddressTypes;
// 顏色
i = android.R.color.darker_gray;
// 尺寸
i = android.R.dimen.app_icon_size;
// 可繪制圖片
i = android.R.drawable.title_bar;
// 字符串
i = android.R.string.cancel;
2.在其他資源文件中引用資源文件
我們經(jīng)常會在布局文件的元素屬性中引用其他資源文件,經(jīng)常用到的有字符串、圖片、 顏色等資源。例如,下列布局文件中的 TextView 組件引用了一個字符串來表示文本內(nèi)容, 引用了一個顏色來表示文本顏色,引用了一個尺寸來表示文本尺寸。
android:layout_height="wrap_content"
android:text="@string/styled_welcome_message"
android:textColor="@color/opaque_red"
android:textSize="@dimen/sixteen_sp" />
本文僅限內(nèi)部技術人員學習交流,不得作于其他商業(yè)用途.希望此文對廣技人員有所幫助。原創(chuàng)文章出自:南昌網(wǎng)站建設公司-百恒網(wǎng)絡 http: //www.myforexfactory.net 如轉(zhuǎn)載請注明出處!