I just started working with Retrofit. I am working on a project that uses SimpleXML. Can somebody provide me an example in which one fetches an XML from a site e.g. http://www.w3schools.com/xml/simple.xml" and reads it out?
相关问题
- How can I create this custom Bottom Navigation on
- Bottom Navigation View gets Shrink Down
- How to make that the snackbar action button be sho
- Listening to outgoing sms not working android
- How to create Circular view on android wear?
相关文章
- android开发 怎么把图片放入drawable的文件夹下
- android上如何获取/storage/emulated/下的文件列表
- androidStudio有个箭头不认识
- SQLite不能创建表
- Windows - Android SDK manager not listing any plat
- Animate Recycler View grid when number of columns
- Why is the app closing suddenly without showing an
- Android OverlayItem.setMarker(): Change the marker
You will create an interface as a new class in your project:
Then in your activity you will call the following:
To get your libraries correctly, in your build.gradle file you need to do the following:
Then you need to specify YourObject and add annotations to it according to the structure of the xml file
Here's how to do it with Retrofit 2.
First you need an interface like (headers annotations are optional) :
The annotated POJOs for XML are the same as in the other answers.
Then you need to make a request to the server :
The needed libraries are :
Source available on my GitHub