2012-04-20 34 views
0

如何用多個圖像創建一個xml?我認爲這個文件應該保存在可繪製文件夾中?我的意思是,該xml的結構應該是什麼? 爲了更詳細地說明,比如我有一個位圖XML:如何在Android中爲多個圖像創建XML?

<?xml version="1.0" encoding="UTF-8"?> 
<bitmap 
xmlns:android="http://schemas.android.com/apk/res/android" 
android:src="@drawable/logo_top" 
android:dither="true" /> 

和它的作品很好,直到我需要添加一些圖片,我明白,有沒有辦法更多的​​位圖添加到1個XML文件,所以我尋找這樣做的方式。 PS我需要這種技術來動態和編程添加圖像。

而且我一直試圖做的是這樣的:

<?xml version="1.0" encoding="UTF-8"?> 
<layer-list xmlns:android="http://schemas.android.com/apk/res/android"> 
<item>  
    <bitmap 
    xmlns:android="http://schemas.android.com/apk/res/android" 
    android:src="@drawable/logo_top" 
    android:dither="true" /> 
</item> 
<item> 
    <bitmap 
    xmlns:android="http://schemas.android.com/apk/res/android" 
    android:src="@drawable/image2" 
    android:dither="true" /> 
</item> 
<item> 
    <bitmap 
    xmlns:android="http://schemas.android.com/apk/res/android" 
    android:src="@drawable/image3" 
    android:dither="true" /> 
</item> 
</layer-list> 

但畫面並沒有出現。

+1

你到底要達到什麼樣的? – Sprigg 2012-04-20 06:09:12

+1

詳細描述你的問題。或分享任何屏​​幕截圖,以便我們可以瞭解情況。 – 2012-04-20 06:10:13

回答

相關問題