使用系統資源
Android本體應用程式具體化了很多自己的資源,各種各樣的字串、圖片、動畫、樣式和布局等都可以在你的應用程式中使用。
在代碼中使用系統資源和使用你自己的資源一樣。不同的是,使用android.R類來使用本體的android資源,而不是使用應用程式指定的R類。下面的程式碼片段給出了在應用程式上下文中返回一個系統的錯誤訊息字串:
CharSequence httpError = getString(android.R.string.httpErrorBadUrl);
在XML中使用系統資源,指定android包名,如下的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”
/>
連結當前主題中的Style
Theme是保證應用程式UI一致性最佳的方法。Android為使用當前主題中的style提供了捷徑,而不是完全的定義每一個style。
要做到這個,你需要在你想要使用的資源前加“?android:”首碼而不是“@”。接下來的例子再次給出了上面代碼的片段,但是使用的是當前主題的textColor,而不是引用系統的資源:
<EditText
android:id=”@+id/myEditText”
android:layout_width=”fill_parent”
android:layout_height=”wrap_content”
android:text=”@string/stop_message”
android:textColor=”?android:textColor”
/>
這個技巧協助你建立隨著主題變化而變化的style,而不必單獨更改每一個style資源。