我想知道,如果我可以得到使用android holo主題時顯示的背景,作爲drawable? (你知道,那是顯示3.0+暗黑色和藍色背景),我需要用它作爲繪製,所以如果有人知道,如果可以做到這一點,請讓我知道..android holo主題背景
對不起,但我忘了提及這是顯示在平板設備上,不知道手機。
我想知道,如果我可以得到使用android holo主題時顯示的背景,作爲drawable? (你知道,那是顯示3.0+暗黑色和藍色背景),我需要用它作爲繪製,所以如果有人知道,如果可以做到這一點,請讓我知道..android holo主題背景
對不起,但我忘了提及這是顯示在平板設備上,不知道手機。
感謝您的回覆,但我需要將背景作爲drawable來使用.java類。我知道你可以爲活動應用主題,但是我遇到的問題是我在應用程序中使用了renderscript,所以主題的背景從未顯示在RSSurfaceView上。 – Sandra
全息暗:
/path_to_sdk/platforms/android-version/data/res/drawable/background_holo_dark.xml
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<gradient
android:startColor="#ff000000"
android:endColor="#ff272d33"
android:angle="270" />
</shape>
Holo-Light:
/path_to_sdk/platforms/android-version/data/res/drawable/background_holo_light.xml
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<gradient
android:startColor="#ffe8e8e8"
android:endColor="#ffffffff"
android:angle="270" />
</shape>
放入水庫下面的代碼/繪製/背景.xml
<?xml version="1.0" encoding="utf-8"?>
<shape
xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
>
<gradient
android:angle="270"
android:startColor="#ff020202"
android:endColor="#ff272D33"
android:type="linear" />
</shape>
將背景參考添加到您的父視圖組
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/background">
玩弄這些值直到獲得理想的效果。
你可以給一個examplescreenshot嗎?我不知道你是哪個背景。在Holo主題中沒有這樣的東西(據我所知)...而且這也是一個非程序化的問題。 – Ahmad
我添加了一個截圖。我的問題是,我可以將此背景的資源作爲可繪製的資源嗎?也許這是不可能的..但值得一試。 – Sandra