mirror of
https://github.com/SimpleMobileTools/Simple-Clock.git
synced 2025-04-03 05:11:09 +02:00
creating the Alarms adapter
This commit is contained in:
parent
4f9624a232
commit
db1012d255
@ -0,0 +1,81 @@
|
||||
package com.simplemobiletools.clock.adapters
|
||||
|
||||
import android.view.Menu
|
||||
import android.view.View
|
||||
import android.view.ViewGroup
|
||||
import com.simplemobiletools.clock.R
|
||||
import com.simplemobiletools.clock.activities.SimpleActivity
|
||||
import com.simplemobiletools.clock.extensions.formatAlarmTime
|
||||
import com.simplemobiletools.clock.models.Alarm
|
||||
import com.simplemobiletools.commons.adapters.MyRecyclerViewAdapter
|
||||
import com.simplemobiletools.commons.views.MyRecyclerView
|
||||
import kotlinx.android.synthetic.main.item_alarm.view.*
|
||||
import java.util.*
|
||||
|
||||
class AlarmsAdapter(activity: SimpleActivity, var alarms: ArrayList<Alarm>, recyclerView: MyRecyclerView, itemClick: (Any) -> Unit) :
|
||||
MyRecyclerViewAdapter(activity, recyclerView, null, itemClick) {
|
||||
|
||||
override fun getActionMenuId() = R.menu.cab_alarms
|
||||
|
||||
override fun prepareActionMode(menu: Menu) {}
|
||||
|
||||
override fun prepareItemSelection(view: View) {}
|
||||
|
||||
override fun markItemSelection(select: Boolean, view: View?) {
|
||||
view?.alarm_frame?.isSelected = select
|
||||
}
|
||||
|
||||
override fun actionItemPressed(id: Int) {
|
||||
if (selectedPositions.isEmpty()) {
|
||||
return
|
||||
}
|
||||
|
||||
when (id) {
|
||||
R.id.cab_delete -> deleteItems()
|
||||
}
|
||||
}
|
||||
|
||||
override fun getSelectableItemCount() = alarms.size
|
||||
|
||||
override fun onCreateViewHolder(parent: ViewGroup, viewType: Int) = createViewHolder(R.layout.item_alarm, parent)
|
||||
|
||||
override fun onBindViewHolder(holder: MyRecyclerViewAdapter.ViewHolder, position: Int) {
|
||||
val alarm = alarms[position]
|
||||
val view = holder.bindView(alarm, true) { itemView, layoutPosition ->
|
||||
setupView(itemView, alarm)
|
||||
}
|
||||
bindViewHolder(holder, position, view)
|
||||
}
|
||||
|
||||
override fun getItemCount() = alarms.size
|
||||
|
||||
fun updateItems(newItems: ArrayList<Alarm>) {
|
||||
alarms = newItems
|
||||
notifyDataSetChanged()
|
||||
finishActMode()
|
||||
}
|
||||
|
||||
private fun deleteItems() {
|
||||
val alarmsToRemove = ArrayList<Alarm>()
|
||||
selectedPositions.sortedDescending().forEach {
|
||||
val alarm = alarms[it]
|
||||
alarmsToRemove.add(alarm)
|
||||
}
|
||||
|
||||
alarms.removeAll(alarmsToRemove)
|
||||
removeSelectedItems()
|
||||
}
|
||||
|
||||
private fun setupView(view: View, alarm: Alarm) {
|
||||
view.apply {
|
||||
alarm_time.text = alarm.timeInMinutes.formatAlarmTime()
|
||||
alarm_time.setTextColor(textColor)
|
||||
|
||||
alarm_days.text = "Mon, Tue, Wed, Thu, Fri"
|
||||
alarm_days.setTextColor(textColor)
|
||||
|
||||
alarm_switch.isChecked = alarm.isEnabled
|
||||
alarm_switch.setColors(textColor, primaryColor, backgroundColor)
|
||||
}
|
||||
}
|
||||
}
|
@ -36,7 +36,7 @@ class TimeZonesAdapter(activity: SimpleActivity, var timeZones: ArrayList<MyTime
|
||||
}
|
||||
|
||||
when (id) {
|
||||
R.id.cab_remove -> removeItems()
|
||||
R.id.cab_delete -> deleteItems()
|
||||
}
|
||||
}
|
||||
|
||||
@ -45,9 +45,9 @@ class TimeZonesAdapter(activity: SimpleActivity, var timeZones: ArrayList<MyTime
|
||||
override fun onCreateViewHolder(parent: ViewGroup, viewType: Int) = createViewHolder(R.layout.item_time_zone, parent)
|
||||
|
||||
override fun onBindViewHolder(holder: MyRecyclerViewAdapter.ViewHolder, position: Int) {
|
||||
val contact = timeZones[position]
|
||||
val view = holder.bindView(contact, true) { itemView, layoutPosition ->
|
||||
setupView(itemView, contact)
|
||||
val timeZone = timeZones[position]
|
||||
val view = holder.bindView(timeZone, true) { itemView, layoutPosition ->
|
||||
setupView(itemView, timeZone)
|
||||
}
|
||||
bindViewHolder(holder, position, view)
|
||||
}
|
||||
@ -64,7 +64,7 @@ class TimeZonesAdapter(activity: SimpleActivity, var timeZones: ArrayList<MyTime
|
||||
notifyDataSetChanged()
|
||||
}
|
||||
|
||||
private fun removeItems() {
|
||||
private fun deleteItems() {
|
||||
val timeZonesToRemove = ArrayList<MyTimeZone>()
|
||||
val timeZoneIDsToRemove = ArrayList<String>()
|
||||
selectedPositions.sortedDescending().forEach {
|
||||
|
@ -0,0 +1,8 @@
|
||||
package com.simplemobiletools.clock.extensions
|
||||
|
||||
fun Int.formatAlarmTime(): String {
|
||||
val hours = this / 60
|
||||
val minutes = this % 60
|
||||
val format = "%02d:%02d"
|
||||
return String.format(format, hours, minutes)
|
||||
}
|
@ -6,6 +6,9 @@ import android.view.LayoutInflater
|
||||
import android.view.View
|
||||
import android.view.ViewGroup
|
||||
import com.simplemobiletools.clock.R
|
||||
import com.simplemobiletools.clock.activities.SimpleActivity
|
||||
import com.simplemobiletools.clock.adapters.AlarmsAdapter
|
||||
import com.simplemobiletools.clock.extensions.dbHelper
|
||||
import com.simplemobiletools.commons.extensions.updateTextColors
|
||||
import kotlinx.android.synthetic.main.fragment_alarm.view.*
|
||||
|
||||
@ -29,6 +32,21 @@ class AlarmFragment : Fragment() {
|
||||
fabClicked()
|
||||
}
|
||||
}
|
||||
|
||||
setupAlarms()
|
||||
}
|
||||
|
||||
private fun setupAlarms() {
|
||||
val alarms = context!!.dbHelper.getAlarms()
|
||||
val currAdapter = view.alarms_list.adapter
|
||||
if (currAdapter == null) {
|
||||
val alarmsAdapter = AlarmsAdapter(activity as SimpleActivity, alarms, view.alarms_list) {
|
||||
|
||||
}
|
||||
view.alarms_list.adapter = alarmsAdapter
|
||||
} else {
|
||||
(currAdapter as AlarmsAdapter).updateItems(alarms)
|
||||
}
|
||||
}
|
||||
|
||||
private fun fabClicked() {
|
||||
|
@ -121,13 +121,12 @@ class ClockFragment : Fragment() {
|
||||
val timeZones = context!!.getAllTimeZonesModified().filter { selectedTimeZoneIDs.contains(it.id) } as ArrayList<MyTimeZone>
|
||||
val currAdapter = view.time_zones_list.adapter
|
||||
if (currAdapter == null) {
|
||||
TimeZonesAdapter(activity as SimpleActivity, timeZones, view.time_zones_list) {
|
||||
val timeZonesAdapter = TimeZonesAdapter(activity as SimpleActivity, timeZones, view.time_zones_list) {
|
||||
EditTimeZoneDialog(activity as SimpleActivity, it as MyTimeZone) {
|
||||
updateTimeZones()
|
||||
}
|
||||
}.apply {
|
||||
view.time_zones_list.adapter = this
|
||||
}
|
||||
view.time_zones_list.adapter = timeZonesAdapter
|
||||
} else {
|
||||
(currAdapter as TimeZonesAdapter).updateItems(timeZones)
|
||||
}
|
||||
|
@ -2,9 +2,13 @@ package com.simplemobiletools.clock.helpers
|
||||
|
||||
import android.content.ContentValues
|
||||
import android.content.Context
|
||||
import android.database.Cursor
|
||||
import android.database.sqlite.SQLiteDatabase
|
||||
import android.database.sqlite.SQLiteOpenHelper
|
||||
import com.simplemobiletools.clock.models.Alarm
|
||||
import com.simplemobiletools.commons.extensions.getIntValue
|
||||
import com.simplemobiletools.commons.extensions.getStringValue
|
||||
import java.util.*
|
||||
|
||||
class DBHelper private constructor(val context: Context) : SQLiteOpenHelper(context, DB_NAME, null, DB_VERSION) {
|
||||
private val ALARMS_TABLE_NAME = "contacts"
|
||||
@ -41,11 +45,11 @@ class DBHelper private constructor(val context: Context) : SQLiteOpenHelper(cont
|
||||
|
||||
private fun insertInitialAlarms(db: SQLiteDatabase) {
|
||||
val weekDays = MONDAY_BIT or TUESDAY_BIT or WEDNESDAY_BIT or THURSDAY_BIT or FRIDAY_BIT
|
||||
val weekDaysAlarm = Alarm(420, weekDays, false, false, "", "")
|
||||
val weekDaysAlarm = Alarm(0, 420, weekDays, false, false, "", "")
|
||||
insertAlarm(weekDaysAlarm, db)
|
||||
|
||||
val weekEnd = SATURDAY_BIT or SUNDAY_BIT
|
||||
val weekEndAlarm = Alarm(540, weekEnd, false, false, "", "")
|
||||
val weekEndAlarm = Alarm(0, 540, weekEnd, false, false, "", "")
|
||||
insertAlarm(weekEndAlarm, db)
|
||||
}
|
||||
|
||||
@ -64,4 +68,35 @@ class DBHelper private constructor(val context: Context) : SQLiteOpenHelper(cont
|
||||
put(COL_LABEL, alarm.label)
|
||||
}
|
||||
}
|
||||
|
||||
fun getAlarms(): ArrayList<Alarm> {
|
||||
val alarms = ArrayList<Alarm>()
|
||||
val cols = arrayOf(COL_ID, COL_TIME_IN_MINUTES, COL_DAYS, COL_IS_ENABLED, COL_VIBRATE, COL_SOUND_URI, COL_LABEL)
|
||||
var cursor: Cursor? = null
|
||||
try {
|
||||
cursor = mDb.query(ALARMS_TABLE_NAME, cols, null, null, null, null, null)
|
||||
if (cursor?.moveToFirst() == true) {
|
||||
do {
|
||||
try {
|
||||
val id = cursor.getIntValue(COL_ID)
|
||||
val timeInMinutes = cursor.getIntValue(COL_TIME_IN_MINUTES)
|
||||
val days = cursor.getIntValue(COL_DAYS)
|
||||
val isEnabled = cursor.getIntValue(COL_IS_ENABLED) == 1
|
||||
val vibrate = cursor.getIntValue(COL_VIBRATE) == 1
|
||||
val soundUri = cursor.getStringValue(COL_SOUND_URI)
|
||||
val label = cursor.getStringValue(COL_LABEL)
|
||||
|
||||
val alarm = Alarm(id, timeInMinutes, days, isEnabled, vibrate, soundUri, label)
|
||||
alarms.add(alarm)
|
||||
} catch (e: Exception) {
|
||||
continue
|
||||
}
|
||||
} while (cursor.moveToNext())
|
||||
}
|
||||
} finally {
|
||||
cursor?.close()
|
||||
}
|
||||
|
||||
return alarms
|
||||
}
|
||||
}
|
||||
|
@ -1,3 +1,3 @@
|
||||
package com.simplemobiletools.clock.models
|
||||
|
||||
data class Alarm(val timeInMinutes: Int, var days: Int, val isEnabled: Boolean, val vibrate: Boolean, val soundUri: String, val label: String)
|
||||
data class Alarm(val id: Int, val timeInMinutes: Int, var days: Int, val isEnabled: Boolean, val vibrate: Boolean, val soundUri: String, val label: String)
|
||||
|
@ -1,6 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<android.support.design.widget.CoordinatorLayout
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||
android:id="@+id/alarm_fragment"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent">
|
||||
@ -10,6 +11,15 @@
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent">
|
||||
|
||||
<com.simplemobiletools.commons.views.MyRecyclerView
|
||||
android:id="@+id/alarms_list"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:clipToPadding="false"
|
||||
android:overScrollMode="ifContentScrolls"
|
||||
android:scrollbars="none"
|
||||
app:layoutManager="com.simplemobiletools.commons.views.MyLinearLayoutManager"/>
|
||||
|
||||
</RelativeLayout>
|
||||
|
||||
<com.simplemobiletools.commons.views.MyFloatingActionButton
|
||||
|
49
app/src/main/res/layout/item_alarm.xml
Normal file
49
app/src/main/res/layout/item_alarm.xml
Normal file
@ -0,0 +1,49 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<FrameLayout
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
android:id="@+id/alarm_frame"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:background="?attr/selectableItemBackground"
|
||||
android:clickable="true"
|
||||
android:focusable="true"
|
||||
android:foreground="@drawable/selector">
|
||||
|
||||
<RelativeLayout
|
||||
android:id="@+id/alarm_holder"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:paddingLeft="@dimen/activity_margin">
|
||||
|
||||
<com.simplemobiletools.commons.views.MyTextView
|
||||
android:id="@+id/alarm_time"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:ellipsize="end"
|
||||
android:maxLines="1"
|
||||
android:paddingTop="@dimen/normal_margin"
|
||||
android:textSize="@dimen/alarm_text_size"
|
||||
tools:text="7:00"/>
|
||||
|
||||
<com.simplemobiletools.commons.views.MyTextView
|
||||
android:id="@+id/alarm_days"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_below="@+id/alarm_time"
|
||||
android:paddingBottom="@dimen/normal_margin"
|
||||
android:textSize="@dimen/big_text_size"
|
||||
tools:text="Mon, Tue, Wed, Thu, Fri"/>
|
||||
|
||||
<com.simplemobiletools.commons.views.MySwitchCompat
|
||||
android:id="@+id/alarm_switch"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="match_parent"
|
||||
android:layout_alignBottom="@id/alarm_days"
|
||||
android:layout_alignParentRight="true"
|
||||
android:layout_alignTop="@+id/alarm_time"
|
||||
android:paddingLeft="@dimen/activity_margin"
|
||||
android:paddingRight="@dimen/medium_margin"/>
|
||||
|
||||
</RelativeLayout>
|
||||
</FrameLayout>
|
9
app/src/main/res/menu/cab_alarms.xml
Normal file
9
app/src/main/res/menu/cab_alarms.xml
Normal file
@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<menu xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:app="http://schemas.android.com/apk/res-auto">
|
||||
<item
|
||||
android:id="@+id/cab_delete"
|
||||
android:icon="@drawable/ic_delete"
|
||||
android:title="@string/delete"
|
||||
app:showAsAction="ifRoom"/>
|
||||
</menu>
|
@ -2,8 +2,8 @@
|
||||
<menu xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:app="http://schemas.android.com/apk/res-auto">
|
||||
<item
|
||||
android:id="@+id/cab_remove"
|
||||
android:icon="@drawable/ic_minus_circle"
|
||||
android:title="@string/remove"
|
||||
android:id="@+id/cab_delete"
|
||||
android:icon="@drawable/ic_delete"
|
||||
android:title="@string/delete"
|
||||
app:showAsAction="ifRoom"/>
|
||||
</menu>
|
||||
|
@ -1,3 +1,4 @@
|
||||
<resources>
|
||||
<dimen name="clock_text_size">70sp</dimen>
|
||||
<dimen name="alarm_text_size">46sp</dimen>
|
||||
</resources>
|
||||
|
Loading…
x
Reference in New Issue
Block a user