proton-mail-android/app/src/main/java/ch/protonmail/android/activities/SettingsActivity.kt

98 lines
3.7 KiB
Kotlin
Raw Normal View History

2020-04-16 15:44:53 +00:00
/*
* Copyright (c) 2020 Proton Technologies AG
*
* This file is part of ProtonMail.
*
* ProtonMail is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* ProtonMail is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with ProtonMail. If not, see https://www.gnu.org/licenses/.
*/
package ch.protonmail.android.activities
import android.os.Bundle
import android.text.TextUtils
import ch.protonmail.android.R
import ch.protonmail.android.activities.settings.BaseSettingsActivity
import ch.protonmail.android.activities.settings.SettingsEnum
import ch.protonmail.android.events.FetchLabelsEvent
import ch.protonmail.android.utils.AppUtil
import ch.protonmail.android.utils.PREF_CUSTOM_APP_LANGUAGE
import com.squareup.otto.Subscribe
class SettingsActivity : BaseSettingsActivity() {
override fun getLayoutId(): Int {
return R.layout.activity_settings
}
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
val actionBar = supportActionBar
if (actionBar != null) {
actionBar.setDisplayHomeAsUpEnabled(true)
actionBar.setTitle(R.string.settings)
}
mSnackLayout = findViewById(R.id.layout_no_connectivity_info)
setUpSettingsItems(R.raw.settings_structure)
renderViews()
}
override fun onResume() {
super.onResume()
setUpSettingsItems(R.raw.settings_structure)
renderViews()
}
override fun renderViews() {
mDisplayName = if (user.getDisplayNameForAddress(user.addressId)?.isEmpty()!!) user.defaultAddress.email else user.getDisplayNameForAddress(user.addressId)!!
setHeader(SettingsEnum.ACCOUNT, mDisplayName)
if (null != user.addresses && user.addresses.size > 0) {
mSelectedAddress = user.addresses[0]
mSignature = mSelectedAddress.signature
setValue(SettingsEnum.ACCOUNT, mSelectedAddress.email)
}
val languageValues = resources.getStringArray(R.array.custom_language_values)
val languageLabels = resources.getStringArray(R.array.custom_language_labels)
val appLanguage = sharedPreferences!!.getString(PREF_CUSTOM_APP_LANGUAGE, "")
if (appLanguage.isNullOrEmpty()) {
setValue(SettingsEnum.APP_LANGUAGE, getString(R.string.auto_detect))
} else {
for (i in languageLabels.indices) {
if (languageValues[i] == appLanguage) {
setValue(SettingsEnum.APP_LANGUAGE, languageLabels[i])
break
}
}
}
mPinValue = user.isUsePin && !TextUtils.isEmpty(mUserManager.mailboxPin)
val autoLockSettingValue = if (mPinValue) getString(R.string.enabled) else getString(R.string.disabled)
setValue(SettingsEnum.AUTO_LOCK, autoLockSettingValue)
setValue(SettingsEnum.COMBINED_CONTACTS, if (user.combinedContacts) getString(R.string.enabled) else getString(R.string.disabled))
setValue(SettingsEnum.APP_VERSION, String.format(getString(R.string.app_version_code), AppUtil.getAppVersionName(this), AppUtil.getAppVersionCode(this)))
}
@Subscribe
override fun onLabelsLoadedEvent(event: FetchLabelsEvent) {
super.onLabelsLoadedEvent(event)
}
}