Convert ForeignCollection to ArrayList - ORMLite, Gson and Android

后端 未结 3 624
悲哀的现实
悲哀的现实 2021-02-01 04:06

I apologize if I\'m not super clear with my explanation but I\'ll add to and edit this question for clarity if requested.

I am developing an Android app which receives d

3条回答
  •  走了就别回头了
    2021-02-01 04:27

    Just to Convert from @ForeignCollectionField to ArrayList you can do that:

    ArrayList taskFieldsList = new ArrayList(your collection);
    
    
    

    hope it's help you.

    提交回复
    热议问题