Add more connector icons

This commit is contained in:
Johan von Forstner
2020-03-23 22:41:17 +01:00
parent 5312b810ce
commit 1dc99df1f6
11 changed files with 190 additions and 11 deletions

View File

@@ -43,8 +43,11 @@ fun <T> setRecyclerViewData(recyclerView: RecyclerView, items: List<T>?) {
fun getConnectorItem(view: ImageView, type: String) {
view.setImageResource(
when (type) {
"Typ2" -> R.drawable.connector_typ2
"CCS" -> R.drawable.connector_ccs
"CCS" -> R.drawable.ic_connector_ccs
"CHAdeMO" -> R.drawable.ic_connector_chademo
"Schuko" -> R.drawable.ic_connector_schuko
"Tesla Supercharger" -> R.drawable.ic_connector_supercharger
"Typ2" -> R.drawable.ic_connector_typ2
// TODO: add other connectors
else -> 0
}