• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (C) 2023 The Android Open Source Project
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *
16  *
17  */
18 
19 package com.android.healthconnect.controller.entrydetails
20 
21 import android.view.LayoutInflater
22 import android.view.View
23 import android.view.ViewGroup
24 import android.widget.TextView
25 import com.android.healthconnect.controller.R
26 import com.android.healthconnect.controller.data.entries.FormattedEntry.FormattedSessionDetail
27 import com.android.healthconnect.controller.shared.recyclerview.SimpleViewBinder
28 import com.android.healthconnect.controller.shared.recyclerview.ViewBinder
29 import com.android.healthconnect.controller.utils.logging.EntryDetailsElement
30 import com.android.healthconnect.controller.utils.logging.HealthConnectLogger
31 import com.android.healthconnect.controller.utils.logging.HealthConnectLoggerEntryPoint
32 import dagger.hilt.android.EntryPointAccessors
33 
34 class SessionDetailViewBinder : SimpleViewBinder<FormattedSessionDetail, View> {
35     private lateinit var logger: HealthConnectLogger
36 
newViewnull37     override fun newView(parent: ViewGroup): View {
38         val context = parent.context.applicationContext
39         val hiltEntryPoint =
40             EntryPointAccessors.fromApplication(
41                 context.applicationContext, HealthConnectLoggerEntryPoint::class.java)
42         logger = hiltEntryPoint.logger()
43         return LayoutInflater.from(parent.context)
44             .inflate(R.layout.item_data_session_detail_entry, parent, false)
45     }
46 
bindnull47     override fun bind(view: View, data: FormattedSessionDetail, index: Int) {
48         val header = view.findViewById<TextView>(R.id.item_data_entry_header)
49         val title = view.findViewById<TextView>(R.id.item_data_entry_title)
50 
51         title.text = data.title
52         title.contentDescription = data.titleA11y
53         header.text = data.header
54         header.contentDescription = data.headerA11y
55 
56         logger.logImpression(EntryDetailsElement.SESSION_DETAIL_ENTRY_VIEW)
57     }
58 }
59