简体   繁体   中英

How to Bind menu item with listview

在此处输入图像描述

Problem - when the user clicks on the menu refresh button(As shown in image) the list of Songs will be Updated(if any change occurs). How to Acheive this(any help is apricated)

override fun onOptionsItemSelected(item: MenuItem): Boolean {
        return when (item.itemId) {
            R.id.action_refresh -> {
                refreshList()
                true
            }
            else -> super.onOptionsItemSelected(item)
        }
    }

private fun refreshList() {
    // Use this method to load the songs just like you might be using the same in OnCreate currently
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM