Tag archives for XML
Learn to Create a Sitemap File Generator in Python
I've been wanting to get back into Python for a while now, but I couldn't find any ideas for small projects to get back into the language. I used to develop frequently in Python more than 15 years ago, but as time went by, I abandoned this language in my projects. So to put an end to this regret, I…
Parsing XML data in Android Apps
JSON is become a very widespread format for the Web Services but in some cases, you would have to parse data in the good old XML format. In that tutorial, you are going to learn how to parse a XML file on Android. Note that there are various XML parses available in the Android SDK in standard. Thus, you can…
How to create a layout with rounded corner borders in Android ?
In Android, when you define your user interface in XML, you can define a border for layouts. However, these borders are rectangles by default. May be, you could want to create a layout with rounded corner borders. You know how to achieve that in CSS but you don't know how to make that in Android. This tutorial is made for…
Create a frame animation in XML on Android
Android offers to developers a great Animation API that lets them to create easily frame animation in XML or programmatically. In the following tutorial, you’re going to learn how to create a frame animation in XML. For this tutorial, we’re going to use a monster character that we want to animate. Get the frames of the monster’s animation The following…