See Route Element Details
Android v4
class RouteListAdapter(private val context: Context) : BaseAdapter() {
private var route: MPRoute? = null
override fun getCount(): Int {
TODO("Not yet implemented")
}
override fun getItem(position: Int): Any {
TODO("Not yet implemented")
}
override fun getItemId(position: Int): Long {
TODO("Not yet implemented")
}
override fun getView(position: Int, convertView: View?, parent: ViewGroup?): View {
TODO("Not yet implemented")
}
}Last updated
Was this helpful?