Android 資源目錄的相關知識 raw drwable values
1. 相關資料夾介紹 在Android專案資料夾裡面,主要的資原始檔是放在res資料夾裡面的。assets資料夾是存放不進行編譯加工的原生檔案,即該資料夾裡面的檔案不會像xml,java檔案被預編譯,可以存放一些圖片,html,js, css等檔案。在後面會介紹如何讀取assets資料夾的資源!
res資料夾裡面的多個資料夾的各自介紹(來自網上的Android開發指南中文版內容):
目錄Directory |
資源型別Resource Types |
res/anim/ |
XML檔案,它們被編譯進逐幀動畫(frame by frame animation)或補間動畫(tweened animation)物件 |
res/drawable/ |
.png、.9.png、.jpg檔案,它們被編譯進以下的Drawable資源子型別中: 要獲得這種型別的一個資源,可以使用Resource.getDrawable(id) 為了獲取資源型別,使用mContext.getResources().getDrawable(R.drawable.imageId) 注意:放在這裡的影象資源可能會被aapt工具自動地進行無失真壓縮優化。比如,一個真彩色但並不需要256色的PNG可能會被轉換為一個帶調色盤的8位PNG。這使得同等質量的圖片佔用更少的資源。所以我們得意識到這些放在該目錄下的二進位制影象在生成時可能會發生變化。如果你想讀取一個影象位流並轉換成一個點陣圖(bitmap),請把影象檔案放在res/raw/目錄下,這樣可以避免被自動優化。 |
res/layout/ |
被編譯為螢幕佈局(或螢幕的一部分)的XML檔案。參見佈局宣告(Declaring Layout) |
res/values/ |
可以被編譯成很多種型別的資源的XML檔案。
注意: 儘管這個資料夾裡的檔案可以任意命名,不過下面使一些比較典型的檔案(檔案命名的慣例是將元素型別包含在該名稱之中):
|
res/xml/ |
任意的XML檔案,在執行時可以通過呼叫Resources.getXML()讀取。 |
res/raw/ |
直接複製到裝置中的任意檔案。它們無需編譯,新增到你的應用程式編譯產生的壓縮檔案中。要使用這些資源,可以呼叫Resources.openRawResource(),引數是資源的ID,即R.raw.somefilename。 |
2.自動生成的R class 在專案資料夾的gen資料夾裡面有個R.java,我們平常引用的資源主要引用這個類的變數。
注意:R類是自動生成的,並且它不能被手動修改。當資源發生變動時,它會自動修改。
3. 在程式碼中使用資源下面是一個引用資源的語法:
R.resource_type.resource_name 或者 android.R.resource_type.resource_name
其中resource_type是R的子類,儲存資源的一個特定型別。resource_name是在XML檔案定義的資源的name屬性,或者有其他檔案型別為資源定義的檔名(不包含副檔名,這指的是drawable資料夾裡面的icon.png類似的檔案,name=icon)。Android包含了很多標準資源,如螢幕樣式和按鈕背景。要在程式碼中引用這些資源,你必須使用android進行限定,如android.R.drawable.button_background。
下面是官方給出的一些在程式碼中使用已編譯資源的正確和錯誤用法的例子:
- // Load a background for the current screen from a drawable resource.
- this.getWindow().setBackgroundDrawableResource(R.drawable.my_background_image);
- // WRONG Sending a string resource reference into a
- // method that expects a string.
- this.getWindow().setTitle(R.string.main_title);
- // RIGHT Need to get the title from the Resources wrapper.
- this.getWindow().setTitle(Resources.getText(R.string.main_title));
- // Load a custom layout for the current screen.
- setContentView(R.layout.main_screen);
- // Set a slide in animation for a ViewFlipper object.
- mFlipper.setInAnimation(AnimationUtils.loadAnimation(this,
- R.anim.hyperspace_in));
- // Set the text on a TextView object.
- TextView msgTextView = (TextView)findViewByID(R.id.msg);
- msgTextView.setText(R.string.hello_message);
同時官方還給了兩個使用系統資源的例子:
- //在螢幕上顯示標準應用程式的圖示
- public
class MyActivity extends Activity { - public
void onStart() { - requestScreenFeatures(FEATURE_BADGE_IMAGE);
- super.onStart();
- setBadgeResource(android.R.drawable.sym_def_app_icon);
- }
- }
- //應用系統定義的標準"綠色背景"視覺處理
- public
class MyActivity extends Activity - public
void onStart() { - super.onStart();
- setTheme(android.R.style.Theme_Black);
- }
- }
4. xml檔案內引用資源1) 引用自定義的資源
android:text="@string/hello"
這裡使用"@"字首引入對一個資源的引用--在@[package:]type/name形式中後面的文字是資源的名稱。在這種情況下,我們不需要指定包名,因為我們引用的是我們自己包中的資源。type是xml子節點名,name是xml屬性名:
- <?xml
version="1.0"
encoding="utf-8"?> - <resources>
- <string
name="hello">Hello World, HelloDemo!</string> - </resources>
2) 引用系統資源
android:textColor="@android:color/opaque_red" 指定package: android
3) 引用主題屬性
另外一種資源值允許你引用當前主題中的屬性的值。這個屬性值只能在樣式資源和XML屬性中使用;它允許你通過將它們改變為當前主題提供的標準變化來改變UI元素的外觀,而不是提供具體的值。
android:textColor="?android:textDisabledColor"
注意,這和資源引用非常類似,除了我們使用一個"?"字首代替了"@"。當你使用這個標記時,你就提供了屬性資源的名稱,它將會在主題中被查詢--因為資源工具知道需要的屬性資源,所以你不需要顯示宣告這個型別(如果宣告,其形式就是?android:attr/android:textDisabledColor)。除了使用這個資源的識別符號來查詢主題中的值代替原始的資源,其命名語法和"@"形式一致:?[namespace:]type/name,這裡型別可選。
5. 替換資源(為了可替換的資源和配置) 個人理解這個替換資源主要用於適應多種規格的螢幕,以及國際化。對於這部分的內容,請參考http://androidappdocs.appspot.com/guide/topics/resources/resources-i18n.html,以後再研究!
6. Color Value語法:
- <color
name="color_name">#color_value</color>
xml引用:android:textColor="@color/color_name"
Java引用: int color = Resources.getColor(R.color.color_name)
其中#color_value有以下格式(A代表Alpha通道):
#RGB
#ARGB
#RRGGBB
#AARRGGBB
xml示例(宣告兩個顏色,第一個不透明,第二個透明色):
- <?xml
version="1.0"
encoding="utf-8"?> - <resources>
- <color
name="opaque_red">#f00</color> - <color
name="translucent_red">#80ff0000</color> - </resources>
7.Color Drawables語法:
- <drawable
name="color_name">color_value</drawable>
xml引用:android:background="@drawable/color_name"
java引用:Drawable redDrawable = Resources.getDrawable(R.drawable.color_name)
color_name和上面的一樣。個人認為,一般情況下使用color屬性,當需要用到paintDrawable時才使用drawable屬性。
xml示例:
- <?xml
version="1.0"
encoding="utf-8"?> - <resources>
- <drawable
name="opaque_red">#f00</drawable> - <drawable
name="translucent_red">#80ff0000</drawable> - </resources>
8. 圖片 一般放在res/drawable/裡面。官方提示png (preferred), jpg (acceptable), gif (discouraged),看來一般使用png格式比較好!
xml引用 @[package:]drawable/some_file
java引用 R.drawable.some_file 引用是不帶副檔名
9. dimension語法:
- <dimen
name="dimen_name">dimen_value單位</dimen>
度量單位:
px(象素): 螢幕實際的象素,常說的解析度1024*768pixels,就是橫向1024px, 縱向768px,不同裝置顯示效果相同。
in(英寸): 螢幕的物理尺寸, 每英寸等於2.54釐米。
mm(毫米): 螢幕的物理尺寸。
pt(點) : 螢幕的物理尺寸。1/72英寸。
dp/dip : 與密度無關的象素,一種基於螢幕密度的抽象單位。在每英寸160點的顯示器上,1dp = 1px。但dp和px的比例會隨著螢幕密度的變化而改變,不同裝置有不同的顯示效果。
sp : 與刻度無關的象素,主要用於字型顯示best for textsize,作為和文字相關大小單位。
XML: android:textSize="@dimen/some_name"
Java: float dimen = Resources.getDimen(R.dimen.some_name)
xml示例:
- <?xml
version="1.0"
encoding="utf-8"?> - <resources>
- <dimen
name="one_pixel">1px</dimen> - <dimen
name="double_density">2dp</dimen> - <dimen
name="sixteen_sp">16sp</dimen> - </resources>
10. string下面是官方給出的正確/錯誤的例子:
- //不使用轉義符則需要用雙引號包住整個string
- <string
name="good_example">"This'll work"</string> - //使用轉義符
- <string
name="good_example_2">This/'ll also work</string> - //錯誤
- <string
name="bad_example">This won't work!</string> - //錯誤 不可使用html轉義字元
- <string
name="bad_example_2">XML encodings won't work either!</string>
- <?xml
version="1.0"
encoding="utf-8"?> - <resources>
- <string
name="simple_welcome_message">Welcome!</string> - <string
name="styled_welcome_message">We are <b><i>so</i></b> glad to see you.</string> - </resources>
- <TextView
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:textAlign="center"
- android:text="@string/simple_welcome_message"/>
- // Assign a styled string resource to a TextView on the current screen.
- CharSequence str = getString(R.string.styled_welcome_message);
- TextView tv = (TextView)findViewByID(R.id.text);
- tv.setText(str);
- <?xml
version="1.0"
encoding="utf-8"?> - <resources>
- <string
name="search_results_resultsTextFormat">%1$d results for <b>&quot;%2$s&quot;</b></string> - </resources>
- //title是我們想賦值給%2$s的字串
- String escapedTitle = TextUtil.htmlEncode(title);
- String resultsTextFormat = getContext().getResources().getString(R.string.search_results_resultsTextFormat);
- String resultsText = String.format(resultsTextFormat, count, escapedTitle);
- CharSequence styledResults = Html.fromHtml(resultsText);
11. assets資料夾資源的訪問 assets資料夾裡面的檔案都是保持原始的檔案格式,需要用AssetManager以位元組流的形式讀取檔案。
1. 先在Activity裡面呼叫getAssets()來獲取AssetManager引用。
2. 再用AssetManager的open(String fileName, int accessMode)方法則指定讀取的檔案以及訪問模式就能得到輸入流InputStream。
3. 然後就是用已經open file 的inputStream讀取檔案,讀取完成後記得inputStream.close()。
4.呼叫AssetManager.close()關閉AssetManager。
相關文章
- Android知識點目錄Android
- Android 知識梳理目錄Android
- Android 開發知識集合目錄Android
- Android關於鍵盤相關知識Android
- Android進階知識:Handler相關Android
- 知識目錄整理
- Android 資料儲存知識梳理(2) Android儲存目錄Android
- Oracle Directory目錄的知識Oracle
- 【Linux基礎知識】Linux目錄管理相關命令有什麼Linux
- 記錄Java執行緒相關知識Java執行緒
- Redis的相關知識Redis
- /proc的相關知識
- 資料結構相關知識資料結構
- sqlite 資料庫 相關知識SQLite資料庫
- php知識點目錄PHP
- 部落格知識目錄
- RESTFUL知識書目錄REST
- Shell相關知識
- .net相關知識
- mobile相關知識
- rollback相關知識
- Android Studio相關資源Android
- 資料結構相關部落格目錄資料結構
- 資料庫相關知識點提要資料庫
- Android 你不得不學的HTTP相關知識AndroidHTTP
- Android View滑動相關的基礎知識點AndroidView
- 前端知識體系目錄前端
- JavaScript相關知識點優秀部落格收錄JavaScript
- Android開發新工具Android Studio相關知識Android
- 音訊相關知識音訊
- Elasticsearch——search相關知識Elasticsearch
- Git相關知識點Git
- SSL相關知識科普
- redis相關知識點Redis
- RPM相關知識
- 直播相關知識收集
- shell相關知識點
- 證書相關知識