@@ -5,11 +5,17 @@ import android.util.Log
5
5
import android.view.LayoutInflater
6
6
import android.view.View
7
7
import android.view.ViewGroup
8
+ import android.widget.ImageView
9
+ import android.widget.LinearLayout
10
+ import android.widget.TextView
8
11
import androidx.activity.OnBackPressedCallback
12
+ import androidx.constraintlayout.widget.ConstraintLayout
13
+ import androidx.core.content.ContextCompat
9
14
import androidx.fragment.app.Fragment
10
15
import androidx.fragment.app.viewModels
11
16
import androidx.recyclerview.widget.LinearLayoutManager
12
17
import androidx.recyclerview.widget.RecyclerView
18
+ import androidx.viewpager2.widget.ViewPager2
13
19
import com.google.android.material.tabs.TabLayoutMediator
14
20
import com.ncs.o2.Constants.SwitchFunctions
15
21
import com.ncs.o2.Data.Room.TasksRepository.TasksDatabase
@@ -18,8 +24,10 @@ import com.ncs.o2.Domain.Models.Task
18
24
import com.ncs.o2.Domain.Models.TaskItem
19
25
import com.ncs.o2.Domain.Repositories.FirestoreRepository
20
26
import com.ncs.o2.Domain.Utility.ExtensionsUtil.gone
27
+ import com.ncs.o2.Domain.Utility.ExtensionsUtil.setBackgroundDrawable
21
28
import com.ncs.o2.Domain.Utility.ExtensionsUtil.visible
22
29
import com.ncs.o2.HelperClasses.PrefManager
30
+ import com.ncs.o2.R
23
31
import com.ncs.o2.UI.MainActivity
24
32
import com.ncs.o2.UI.Tasks.Sections.TaskSectionFragment
25
33
import com.ncs.o2.UI.Tasks.Sections.TaskSectionViewModel
@@ -132,9 +140,27 @@ class TasksHolderFragment : Fragment(),SegmentSelectionBottomSheet.sendSectionsL
132
140
133
141
private fun setUpTabsLayout (list : MutableList <String >) {
134
142
Log .d(" sectionslist" , list.toString())
135
- TabLayoutMediator (
136
- activityBinding.gioActionbar.tabLayout, binding.viewPager2
137
- ) { tab, position ->
143
+
144
+ val viewPager2 = binding.viewPager2
145
+ val adapter = TaskSectionViewPagerAdapter (this , list.size, list)
146
+ viewPager2.adapter = adapter
147
+
148
+ val tabLayout = activityBinding.gioActionbar.tabLayout
149
+ tabLayout.removeAllTabs()
150
+
151
+ val tabLayoutMediator = TabLayoutMediator (tabLayout, viewPager2) { tab, position ->
152
+ val customTabView = LayoutInflater .from(tabLayout.context).inflate(R .layout.tab_item, null )
153
+ val tabText: TextView = customTabView.findViewById(R .id.tabText)
154
+ val iconCount: TextView = customTabView.findViewById(R .id.iconCount)
155
+ val countParent: ConstraintLayout = customTabView.findViewById(R .id.count)
156
+
157
+ updateTabColors(viewPager2.currentItem)
158
+
159
+ viewPager2.registerOnPageChangeCallback(object : ViewPager2 .OnPageChangeCallback () {
160
+ override fun onPageSelected (position : Int ) {
161
+ updateTabColors(position)
162
+ }
163
+ })
138
164
if (position < list.size && position !in processedPositions) {
139
165
Log .d(" sectionslist" , " current position is $position " )
140
166
@@ -151,9 +177,12 @@ class TasksHolderFragment : Fragment(),SegmentSelectionBottomSheet.sendSectionsL
151
177
152
178
withContext(Dispatchers .Main ) {
153
179
if (tasks.isEmpty()) {
154
- tab.text = list[currentPosition]
180
+ countParent.gone()
181
+ tabText.text = list[position]
155
182
} else {
156
- tab.text = " ${list[currentPosition]} (${tasks.size} )"
183
+ countParent.visible()
184
+ tabText.text = list[position]
185
+ iconCount.text= tasks.size.toString()
157
186
}
158
187
}
159
188
@@ -162,10 +191,31 @@ class TasksHolderFragment : Fragment(),SegmentSelectionBottomSheet.sendSectionsL
162
191
}
163
192
}
164
193
}
165
- }.attach()
194
+ tab.customView = customTabView
195
+ }
196
+
197
+ tabLayoutMediator.attach()
198
+
199
+
166
200
}
167
201
202
+ fun updateTabColors (selectedPosition : Int ) {
203
+ val selectedColor = ContextCompat .getColor(activityBinding.gioActionbar.tabLayout.context, R .color.selected_tab_color)
204
+ val unselectedColor = ContextCompat .getColor(activityBinding.gioActionbar.tabLayout.context, R .color.unselected_tab_color)
205
+
206
+ for (i in 0 until activityBinding.gioActionbar.tabLayout.tabCount) {
207
+ val tab = activityBinding.gioActionbar.tabLayout.getTabAt(i)
208
+ val tabText = tab?.customView?.findViewById<TextView >(R .id.tabText)
209
+ val tabIconBg = tab?.customView?.findViewById<LinearLayout >(R .id.tabIcon)
168
210
211
+ if (tab != null && tabText != null && tabIconBg != null ) {
212
+ val color = if (i == selectedPosition) selectedColor else unselectedColor
213
+ val drawable= if (i == selectedPosition) R .drawable.tab_selected__icon_bg else R .drawable.tab_unselected_icon_bg
214
+ tabText.setTextColor(color)
215
+ tabIconBg.setBackgroundDrawable(resources.getDrawable(drawable))
216
+ }
217
+ }
218
+ }
169
219
170
220
override fun sendSectionsList (list : MutableList <String >) {
171
221
sectionsList.clear()
0 commit comments