Loading Integer Array from xml

后端 未结 4 553
猫巷女王i
猫巷女王i 2020-12-21 03:57

I have an integer array in an xml file as follows


    @drawable/pic1
    @drawabl         


        
4条回答
  •  -上瘾入骨i
    2020-12-21 04:43

    It looks like you might be talking about typed arrays?

    if so a typed array should look like this:

    
    
        
            @drawable/home
            @drawable/settings
            @drawable/logout
        
        
            #FFFF0000
            #FF00FF00
            #FF0000FF
        
    
    

    Can you show us your actual xml file so we can help you?

    EDIT: Yeah those are not integers. make it a resource array if you want to store resources.

提交回复
热议问题