android使用系統資源,連結當前主題中的Style

來源:互聯網
上載者:User

使用系統資源

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資源。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.