xml-drawable

    5熱度

    2回答

    我有下一個XML抽拉blue_button <?xml version="1.0" encoding="utf-8"?> <selector xmlns:android="http://schemas.android.com/apk/res/android"> <item> <layer-list> <item><bitmap android:src="@draw

    2熱度

    1回答

    我在我的應用程序中使用了ActionBarSherlock庫。我還需要自定義動作條,所以我增加了一個自定義主題與background參數集,這樣的: <style name="Widget.Styled.ActionBar" parent="Widget.Sherlock.Light.ActionBar.Solid.Inverse"> <item name="background">@draw

    22熱度

    2回答

    以下是虛線,在XML定義爲ShapeDrawable: <shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="line"> <size android:height="2dp" android:width="700dp" />

    1熱度

    1回答

    我有以下可繪製文件button.xml: <?xml version="1.0" encoding="utf-8"?> <selector xmlns:android="http://schemas.android.com/apk/res/android"> <item android:drawable="@drawable/button_down" android:state_ena

    0熱度

    1回答

    我試圖建立一個佈局列表層繪製 這是我的代碼: <?xml version="1.0" encoding="utf-8"?> <layer-list xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match

    3熱度

    2回答

    我正在編寫一個Android應用程序,並遇到了一個非常奇怪的情況。我有一個動畫列表xml文件,我爲一個名爲'loading.xml'的動畫加載圖形創建了一個動畫列表xml文件,並將其設置爲我的代碼中ImageView的背景。這是這樣的: public void startLoading() { if(!isLoading) { loading.setBackgroundRes

    26熱度

    8回答

    我正在處理非常複雜的xml drawable,我想知道是否有任何工具/插件允許我預覽我的drawable? 我正在尋找類似於可用於佈局的「圖形佈局」選項卡。 例如,如果我有這樣的事情: <?xml version="1.0" encoding="utf-8"?> <layer-list xmlns:android="http://schemas.android.com/apk/res/andro

    0熱度

    2回答

    我試圖使可繪製應該看起來像在下面的圖像中: 3個水平線的1dp,每個具有不同的顏色,其餘的空間應該是用漸變填充: 所以我寫了這一點: <layer-list xmlns:android="http://schemas.android.com/apk/res/android"> <item> <shape android:shape="line"> <stroke

    6熱度

    3回答

    我在layout中創建了button。在Drawable文件夾中,我創建了一個名爲btn01_state的XML file。該btn01_state.xml分配給我通過「android:[email protected]/btn01_state」 現在創建button,該button有一個默認image img1.when我click在button,則此搜索改變IMG2,有一次我鬆開點擊的鼠標按鈕

    3熱度

    1回答

    我有兩個不同顏色和邊框顏色的按鈕。所以,我需要建立在繪製文件夾中的XML與形狀屬性和: <stroke android:width="1dp" android:color="#C5510E" /> <solid android:color="#F78340" />` ,並與另一個XML: <stroke android:width="1dp" and