rename app_launcher_dialog_item to app_launcher_item

This commit is contained in:
tibbi 2016-08-22 18:14:07 +02:00
parent 5cdcbf0dd3
commit 613ad24dd0
3 changed files with 2 additions and 2 deletions

View File

@ -63,7 +63,7 @@ class RecyclerAdapter(val act: Activity, val launchers: List<AppLauncher>, val i
}
override fun onCreateViewHolder(parent: ViewGroup?, viewType: Int): ViewHolder {
val view = LayoutInflater.from(parent?.context).inflate(R.layout.app_launcher_dialog_item, parent, false)
val view = LayoutInflater.from(parent?.context).inflate(R.layout.app_launcher_item, parent, false)
return ViewHolder(view, itemClick)
}

View File

@ -18,7 +18,7 @@ class RecyclerDialogAdapter(val cxt: Context, val launchers: List<AppLauncher>)
}
override fun onCreateViewHolder(parent: ViewGroup?, viewType: Int): ViewHolder {
val view = LayoutInflater.from(parent?.context).inflate(R.layout.app_launcher_dialog_item, parent, false)
val view = LayoutInflater.from(parent?.context).inflate(R.layout.app_launcher_item, parent, false)
return ViewHolder(view)
}