mirror of
https://github.com/nextcloud/talk-android
synced 2025-06-28 16:09:39 +01:00
59 lines
1.8 KiB
Kotlin
59 lines
1.8 KiB
Kotlin
/*
|
|
* Nextcloud Talk application
|
|
*
|
|
* @author Marcel Hibbe
|
|
* Copyright (C) 2021 Marcel Hibbe <dev@mhibbe.de>
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
package com.nextcloud.talk.adapters
|
|
|
|
import android.content.Context
|
|
import android.view.LayoutInflater
|
|
import android.view.View
|
|
import android.view.ViewGroup
|
|
import android.widget.BaseAdapter
|
|
import android.widget.TextView
|
|
import com.nextcloud.talk.R
|
|
import fr.dudie.nominatim.model.Address
|
|
|
|
class GeocodingAdapter(context: Context, val dataSource: List<Address>) : BaseAdapter() {
|
|
|
|
private val inflater: LayoutInflater = context.getSystemService(Context.LAYOUT_INFLATER_SERVICE) as LayoutInflater
|
|
|
|
override fun getCount(): Int {
|
|
return dataSource.size
|
|
}
|
|
|
|
override fun getItem(position: Int): Any {
|
|
return dataSource[position]
|
|
}
|
|
|
|
override fun getItemId(position: Int): Long {
|
|
return position.toLong()
|
|
}
|
|
|
|
override fun getView(position: Int, convertView: View?, parent: ViewGroup): View {
|
|
val rowView = inflater.inflate(R.layout.geocoding_item, parent, false)
|
|
|
|
val nameView = rowView.findViewById(R.id.name) as TextView
|
|
|
|
val address = getItem(position) as Address
|
|
nameView.text = address.displayName
|
|
|
|
return rowView
|
|
}
|
|
}
|