Skip to main content

Posts

Showing posts with the label java xml

Android Kotlin read rss feed xml data from url

Android Kotlin read RSS Feed XML data from URL in the most efficient way Today we learn how we can read XML data from an url by using most efficient and short code. We can use java for it but then will need to write more code compare to below code. So we will use kotlin functions to read RSS Feed from apple . In below code we will read top 5 free download apps list data of apple store rss feed  that will be in XML format. class MainActivity : AppCompatActivity() {     private val TAG = "MainActivity"     override fun onCreate(savedInstanceState: Bundle?) {         super.onCreate(savedInstanceState)         setContentView(R.layout.activity_main)         Log.wtf(TAG, "onCreate Called")         val downloadData = DownloadData()         downloadData.execute("http://a...