Skip to content

Commit

Permalink
Settings activity logs
Browse files Browse the repository at this point in the history
  • Loading branch information
Slion committed Mar 25, 2024
1 parent 6406cc4 commit e4aef30
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion app/src/main/java/fulguris/activity/SettingsActivity.kt
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ import android.widget.TextView
import androidx.core.view.doOnLayout
import androidx.fragment.app.Fragment
import dagger.hilt.android.AndroidEntryPoint
import fulguris.extensions.ihs
import timber.log.Timber

const val SETTINGS_CLASS_NAME = "ClassName"
Expand Down Expand Up @@ -71,8 +72,11 @@ class SettingsActivity : ThemedSettingsActivity() {
}



/**
*
*/
override fun onResume() {
Timber.d("$ihs : onResume")
super.onResume()

// At this stage our preferences have been created
Expand All @@ -96,6 +100,16 @@ class SettingsActivity : ThemedSettingsActivity() {
updateTitleOnLayout()
}

/**
*
*/
override fun onDestroy() {
Timber.d("$ihs : onDestroy")
super.onDestroy()

//responsive = null
}

/**
*
*/
Expand Down

0 comments on commit e4aef30

Please sign in to comment.