1. 程式人生 > >Android的資源引用(1)(字串、顏色、尺寸、陣列)

Android的資源引用(1)(字串、顏色、尺寸、陣列)

一、Android應用資源可以分為兩大類

1、無法通過R資源清單類訪問的原生資源,儲存在assets目錄下面

2、可通過R資源清單訪問的資源,儲存在res目錄下面,R類將/res/目錄下面所有的資源建立索引,清單只是一個int型別

二、Resources類稱為“Android的資源訪問的總管家”,由Context呼叫getRresources()方法來獲取,提供了大量的方法來,根據資源清單ID獲取資源。主要提供兩類。

1、getXxx(int id):根據資源清單id來獲取實際資源

2、getAssets()訪問/assets/目錄下面資源的AssetManager物件。

 

三、字串(/res/values/string.xml     R.string)

<resources>
    <string name="app_name">summary2</string>
    <string name="color">color</string>
</resources>

在java程式碼中引用,R.string.

在xml檔案上,@string/

 

四、顏色(/res/values/colors.xml     R.colors)

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <color name="colorPrimary">#3F51B5</color>
    <color name="colorPrimaryDark">#303F9F</color>
    <color name="colorAccent">#FF4081</color>
</resources>

在java程式碼中引用,R.color.

在xml檔案上,@color/

 

五、尺寸(/res/values/dimens.xml     R.dimen)

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <dimen name="spance">8dp</dimen>
    <dimen name="cell_width">10dp</dimen>
</resources>

在java程式碼中引用,R.dimen.

在xml檔案上,@dimen/

 

六、陣列(/res/values/arrays.xml     R.array)

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <array name="p">
        <item>@string/color</item>
        <item>@string/aa</item>
        <item>@string/app_name</item>
    </array>
</resources>

在java程式碼中引用

String []test=this.getResources().getStringArray(R.array.p);