mirror of
https://github.com/SagerNet/sing-box-for-android.git
synced 2025-04-04 20:37:40 +03:00
Fix binding usage
This commit is contained in:
parent
49a9fb3817
commit
5e98d2cbe1
7 changed files with 84 additions and 38 deletions
|
@ -37,12 +37,8 @@ import kotlinx.coroutines.withContext
|
||||||
class GroupsFragment : Fragment(), CommandClient.Handler {
|
class GroupsFragment : Fragment(), CommandClient.Handler {
|
||||||
|
|
||||||
private val activity: MainActivity? get() = super.getActivity() as MainActivity?
|
private val activity: MainActivity? get() = super.getActivity() as MainActivity?
|
||||||
private var _binding: FragmentDashboardGroupsBinding? = null
|
private var binding: FragmentDashboardGroupsBinding? = null
|
||||||
private val binding get() = _binding!!
|
private var adapter: Adapter? = null
|
||||||
|
|
||||||
private var _adapter: Adapter? = null
|
|
||||||
private val adapter get() = _adapter!!
|
|
||||||
|
|
||||||
private val commandClient =
|
private val commandClient =
|
||||||
CommandClient(lifecycleScope, CommandClient.ConnectionType.Groups, this)
|
CommandClient(lifecycleScope, CommandClient.ConnectionType.Groups, this)
|
||||||
|
|
||||||
|
@ -50,14 +46,16 @@ class GroupsFragment : Fragment(), CommandClient.Handler {
|
||||||
override fun onCreateView(
|
override fun onCreateView(
|
||||||
inflater: LayoutInflater, container: ViewGroup?, savedInstanceState: Bundle?
|
inflater: LayoutInflater, container: ViewGroup?, savedInstanceState: Bundle?
|
||||||
): View {
|
): View {
|
||||||
_binding = FragmentDashboardGroupsBinding.inflate(inflater, container, false)
|
val binding = FragmentDashboardGroupsBinding.inflate(inflater, container, false)
|
||||||
|
this.binding = binding
|
||||||
onCreate()
|
onCreate()
|
||||||
return binding.root
|
return binding.root
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun onCreate() {
|
private fun onCreate() {
|
||||||
val activity = activity ?: return
|
val activity = activity ?: return
|
||||||
_adapter = Adapter()
|
val binding = binding ?: return
|
||||||
|
adapter = Adapter()
|
||||||
binding.container.adapter = adapter
|
binding.container.adapter = adapter
|
||||||
binding.container.layoutManager = LinearLayoutManager(requireContext())
|
binding.container.layoutManager = LinearLayoutManager(requireContext())
|
||||||
activity.serviceStatus.observe(viewLifecycleOwner) {
|
activity.serviceStatus.observe(viewLifecycleOwner) {
|
||||||
|
@ -67,8 +65,14 @@ class GroupsFragment : Fragment(), CommandClient.Handler {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
override fun onDestroyView() {
|
||||||
|
super.onDestroyView()
|
||||||
|
binding = null
|
||||||
|
}
|
||||||
|
|
||||||
private var displayed = false
|
private var displayed = false
|
||||||
private fun updateDisplayed(newValue: Boolean) {
|
private fun updateDisplayed(newValue: Boolean) {
|
||||||
|
val binding = binding ?: return
|
||||||
if (displayed != newValue) {
|
if (displayed != newValue) {
|
||||||
displayed = newValue
|
displayed = newValue
|
||||||
binding.statusText.isVisible = !displayed
|
binding.statusText.isVisible = !displayed
|
||||||
|
@ -90,6 +94,7 @@ class GroupsFragment : Fragment(), CommandClient.Handler {
|
||||||
|
|
||||||
@SuppressLint("NotifyDataSetChanged")
|
@SuppressLint("NotifyDataSetChanged")
|
||||||
override fun updateGroups(groups: List<OutboundGroup>) {
|
override fun updateGroups(groups: List<OutboundGroup>) {
|
||||||
|
val adapter = adapter ?: return
|
||||||
activity?.runOnUiThread {
|
activity?.runOnUiThread {
|
||||||
updateDisplayed(groups.isNotEmpty())
|
updateDisplayed(groups.isNotEmpty())
|
||||||
adapter.groups = groups
|
adapter.groups = groups
|
||||||
|
|
|
@ -37,8 +37,7 @@ import kotlinx.coroutines.withContext
|
||||||
class OverviewFragment : Fragment() {
|
class OverviewFragment : Fragment() {
|
||||||
|
|
||||||
private val activity: MainActivity? get() = super.getActivity() as MainActivity?
|
private val activity: MainActivity? get() = super.getActivity() as MainActivity?
|
||||||
private var _binding: FragmentDashboardOverviewBinding? = null
|
private var binding: FragmentDashboardOverviewBinding? = null
|
||||||
private val binding get() = _binding!!
|
|
||||||
private val statusClient =
|
private val statusClient =
|
||||||
CommandClient(lifecycleScope, CommandClient.ConnectionType.Status, StatusClient())
|
CommandClient(lifecycleScope, CommandClient.ConnectionType.Status, StatusClient())
|
||||||
private val clashModeClient =
|
private val clashModeClient =
|
||||||
|
@ -48,13 +47,15 @@ class OverviewFragment : Fragment() {
|
||||||
override fun onCreateView(
|
override fun onCreateView(
|
||||||
inflater: LayoutInflater, container: ViewGroup?, savedInstanceState: Bundle?
|
inflater: LayoutInflater, container: ViewGroup?, savedInstanceState: Bundle?
|
||||||
): View {
|
): View {
|
||||||
_binding = FragmentDashboardOverviewBinding.inflate(inflater, container, false)
|
val binding = FragmentDashboardOverviewBinding.inflate(inflater, container, false)
|
||||||
|
this.binding = binding
|
||||||
onCreate()
|
onCreate()
|
||||||
return binding.root
|
return binding.root
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun onCreate() {
|
private fun onCreate() {
|
||||||
val activity = activity ?: return
|
val activity = activity ?: return
|
||||||
|
val binding = binding ?: return
|
||||||
binding.profileList.adapter = Adapter(lifecycleScope, binding).apply {
|
binding.profileList.adapter = Adapter(lifecycleScope, binding).apply {
|
||||||
adapter = this
|
adapter = this
|
||||||
reload()
|
reload()
|
||||||
|
@ -81,7 +82,7 @@ class OverviewFragment : Fragment() {
|
||||||
override fun onDestroyView() {
|
override fun onDestroyView() {
|
||||||
super.onDestroyView()
|
super.onDestroyView()
|
||||||
adapter = null
|
adapter = null
|
||||||
_binding = null
|
binding = null
|
||||||
statusClient.disconnect()
|
statusClient.disconnect()
|
||||||
clashModeClient.disconnect()
|
clashModeClient.disconnect()
|
||||||
ProfileManager.unregisterCallback(this::updateProfiles)
|
ProfileManager.unregisterCallback(this::updateProfiles)
|
||||||
|
@ -92,6 +93,7 @@ class OverviewFragment : Fragment() {
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun reloadSystemProxyStatus() {
|
private fun reloadSystemProxyStatus() {
|
||||||
|
val binding = binding ?: return
|
||||||
lifecycleScope.launch(Dispatchers.IO) {
|
lifecycleScope.launch(Dispatchers.IO) {
|
||||||
val status = Libbox.newStandaloneCommandClient().systemProxyStatus
|
val status = Libbox.newStandaloneCommandClient().systemProxyStatus
|
||||||
withContext(Dispatchers.Main) {
|
withContext(Dispatchers.Main) {
|
||||||
|
@ -117,7 +119,7 @@ class OverviewFragment : Fragment() {
|
||||||
inner class StatusClient : CommandClient.Handler {
|
inner class StatusClient : CommandClient.Handler {
|
||||||
|
|
||||||
override fun onConnected() {
|
override fun onConnected() {
|
||||||
val binding = _binding ?: return
|
val binding = binding ?: return
|
||||||
lifecycleScope.launch(Dispatchers.Main) {
|
lifecycleScope.launch(Dispatchers.Main) {
|
||||||
binding.memoryText.text = getString(R.string.loading)
|
binding.memoryText.text = getString(R.string.loading)
|
||||||
binding.goroutinesText.text = getString(R.string.loading)
|
binding.goroutinesText.text = getString(R.string.loading)
|
||||||
|
@ -125,7 +127,7 @@ class OverviewFragment : Fragment() {
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun onDisconnected() {
|
override fun onDisconnected() {
|
||||||
val binding = _binding ?: return
|
val binding = binding ?: return
|
||||||
lifecycleScope.launch(Dispatchers.Main) {
|
lifecycleScope.launch(Dispatchers.Main) {
|
||||||
binding.memoryText.text = getString(R.string.loading)
|
binding.memoryText.text = getString(R.string.loading)
|
||||||
binding.goroutinesText.text = getString(R.string.loading)
|
binding.goroutinesText.text = getString(R.string.loading)
|
||||||
|
@ -133,7 +135,7 @@ class OverviewFragment : Fragment() {
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun updateStatus(status: StatusMessage) {
|
override fun updateStatus(status: StatusMessage) {
|
||||||
val binding = _binding ?: return
|
val binding = binding ?: return
|
||||||
lifecycleScope.launch(Dispatchers.Main) {
|
lifecycleScope.launch(Dispatchers.Main) {
|
||||||
binding.memoryText.text = Libbox.formatBytes(status.memory)
|
binding.memoryText.text = Libbox.formatBytes(status.memory)
|
||||||
binding.goroutinesText.text = status.goroutines.toString()
|
binding.goroutinesText.text = status.goroutines.toString()
|
||||||
|
@ -155,6 +157,7 @@ class OverviewFragment : Fragment() {
|
||||||
inner class ClashModeClient : CommandClient.Handler {
|
inner class ClashModeClient : CommandClient.Handler {
|
||||||
|
|
||||||
override fun initializeClashMode(modeList: List<String>, currentMode: String) {
|
override fun initializeClashMode(modeList: List<String>, currentMode: String) {
|
||||||
|
val binding = binding ?: return
|
||||||
if (modeList.size > 1) {
|
if (modeList.size > 1) {
|
||||||
lifecycleScope.launch(Dispatchers.Main) {
|
lifecycleScope.launch(Dispatchers.Main) {
|
||||||
binding.clashModeCard.isVisible = true
|
binding.clashModeCard.isVisible = true
|
||||||
|
@ -174,6 +177,7 @@ class OverviewFragment : Fragment() {
|
||||||
|
|
||||||
@SuppressLint("NotifyDataSetChanged")
|
@SuppressLint("NotifyDataSetChanged")
|
||||||
override fun updateClashMode(newMode: String) {
|
override fun updateClashMode(newMode: String) {
|
||||||
|
val binding = binding ?: return
|
||||||
val adapter = binding.clashModeList.adapter as? ClashModeAdapter ?: return
|
val adapter = binding.clashModeList.adapter as? ClashModeAdapter ?: return
|
||||||
adapter.selected = newMode
|
adapter.selected = newMode
|
||||||
lifecycleScope.launch(Dispatchers.Main) {
|
lifecycleScope.launch(Dispatchers.Main) {
|
||||||
|
|
|
@ -20,19 +20,19 @@ import io.nekohasekai.sfa.ui.dashboard.OverviewFragment
|
||||||
class DashboardFragment : Fragment(R.layout.fragment_dashboard) {
|
class DashboardFragment : Fragment(R.layout.fragment_dashboard) {
|
||||||
|
|
||||||
private val activity: MainActivity? get() = super.getActivity() as MainActivity?
|
private val activity: MainActivity? get() = super.getActivity() as MainActivity?
|
||||||
private var _binding: FragmentDashboardBinding? = null
|
private var binding: FragmentDashboardBinding? = null
|
||||||
private val binding get() = _binding!!
|
|
||||||
|
|
||||||
override fun onCreateView(
|
override fun onCreateView(
|
||||||
inflater: LayoutInflater, container: ViewGroup?, savedInstanceState: Bundle?
|
inflater: LayoutInflater, container: ViewGroup?, savedInstanceState: Bundle?
|
||||||
): View {
|
): View {
|
||||||
_binding = FragmentDashboardBinding.inflate(inflater, container, false)
|
val binding = FragmentDashboardBinding.inflate(inflater, container, false)
|
||||||
|
this.binding = binding
|
||||||
onCreate()
|
onCreate()
|
||||||
return binding.root
|
return binding.root
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun onCreate() {
|
private fun onCreate() {
|
||||||
val activity = activity ?: return
|
val activity = activity ?: return
|
||||||
|
val binding = binding ?: return
|
||||||
binding.dashboardPager.adapter = Adapter(this)
|
binding.dashboardPager.adapter = Adapter(this)
|
||||||
binding.dashboardPager.offscreenPageLimit = Page.values().size
|
binding.dashboardPager.offscreenPageLimit = Page.values().size
|
||||||
TabLayoutMediator(binding.dashboardTabLayout, binding.dashboardPager) { tab, position ->
|
TabLayoutMediator(binding.dashboardTabLayout, binding.dashboardPager) { tab, position ->
|
||||||
|
@ -79,12 +79,19 @@ class DashboardFragment : Fragment(R.layout.fragment_dashboard) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
override fun onDestroyView() {
|
||||||
|
super.onDestroyView()
|
||||||
|
binding = null
|
||||||
|
}
|
||||||
|
|
||||||
private fun enablePager() {
|
private fun enablePager() {
|
||||||
|
val binding = binding ?: return
|
||||||
binding.dashboardTabLayout.isVisible = true
|
binding.dashboardTabLayout.isVisible = true
|
||||||
binding.dashboardPager.isUserInputEnabled = true
|
binding.dashboardPager.isUserInputEnabled = true
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun disablePager() {
|
private fun disablePager() {
|
||||||
|
val binding = binding ?: return
|
||||||
binding.dashboardTabLayout.isVisible = false
|
binding.dashboardTabLayout.isVisible = false
|
||||||
binding.dashboardPager.isUserInputEnabled = false
|
binding.dashboardPager.isUserInputEnabled = false
|
||||||
binding.dashboardPager.setCurrentItem(0, false)
|
binding.dashboardPager.setCurrentItem(0, false)
|
||||||
|
|
|
@ -19,20 +19,21 @@ import java.util.LinkedList
|
||||||
|
|
||||||
class LogFragment : Fragment() {
|
class LogFragment : Fragment() {
|
||||||
private val activity: MainActivity? get() = super.getActivity() as MainActivity?
|
private val activity: MainActivity? get() = super.getActivity() as MainActivity?
|
||||||
private var _binding: FragmentLogBinding? = null
|
private var binding: FragmentLogBinding? = null
|
||||||
private val binding get() = _binding!!
|
|
||||||
private var logAdapter: LogAdapter? = null
|
private var logAdapter: LogAdapter? = null
|
||||||
|
|
||||||
override fun onCreateView(
|
override fun onCreateView(
|
||||||
inflater: LayoutInflater, container: ViewGroup?, savedInstanceState: Bundle?
|
inflater: LayoutInflater, container: ViewGroup?, savedInstanceState: Bundle?
|
||||||
): View {
|
): View {
|
||||||
_binding = FragmentLogBinding.inflate(inflater, container, false)
|
val binding = FragmentLogBinding.inflate(inflater, container, false)
|
||||||
|
this.binding = binding
|
||||||
onCreate()
|
onCreate()
|
||||||
return binding.root
|
return binding.root
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun onCreate() {
|
private fun onCreate() {
|
||||||
val activity = activity ?: return
|
val activity = activity ?: return
|
||||||
|
val binding = binding ?: return
|
||||||
activity.logCallback = ::updateViews
|
activity.logCallback = ::updateViews
|
||||||
binding.logView.layoutManager = LinearLayoutManager(requireContext())
|
binding.logView.layoutManager = LinearLayoutManager(requireContext())
|
||||||
binding.logView.adapter = LogAdapter(activity.logList).also { logAdapter = it }
|
binding.logView.adapter = LogAdapter(activity.logList).also { logAdapter = it }
|
||||||
|
@ -82,6 +83,7 @@ class LogFragment : Fragment() {
|
||||||
private fun updateViews(reset: Boolean) {
|
private fun updateViews(reset: Boolean) {
|
||||||
val activity = activity ?: return
|
val activity = activity ?: return
|
||||||
val logAdapter = logAdapter ?: return
|
val logAdapter = logAdapter ?: return
|
||||||
|
val binding = binding ?: return
|
||||||
if (activity.logList.isEmpty()) {
|
if (activity.logList.isEmpty()) {
|
||||||
binding.logView.isVisible = false
|
binding.logView.isVisible = false
|
||||||
binding.statusText.isVisible = true
|
binding.statusText.isVisible = true
|
||||||
|
@ -99,7 +101,7 @@ class LogFragment : Fragment() {
|
||||||
|
|
||||||
override fun onDestroyView() {
|
override fun onDestroyView() {
|
||||||
super.onDestroyView()
|
super.onDestroyView()
|
||||||
_binding = null
|
binding = null
|
||||||
activity?.logCallback = null
|
activity?.logCallback = null
|
||||||
logAdapter = null
|
logAdapter = null
|
||||||
}
|
}
|
||||||
|
|
|
@ -30,15 +30,15 @@ import java.util.Date
|
||||||
|
|
||||||
class EditProfileActivity : AbstractActivity() {
|
class EditProfileActivity : AbstractActivity() {
|
||||||
|
|
||||||
private var _binding: ActivityEditProfileBinding? = null
|
private var binding: ActivityEditProfileBinding? = null
|
||||||
private val binding get() = _binding!!
|
|
||||||
private var _profile: Profile? = null
|
private var _profile: Profile? = null
|
||||||
private val profile get() = _profile!!
|
private val profile get() = _profile!!
|
||||||
override fun onCreate(savedInstanceState: Bundle?) {
|
override fun onCreate(savedInstanceState: Bundle?) {
|
||||||
super.onCreate(savedInstanceState)
|
super.onCreate(savedInstanceState)
|
||||||
|
|
||||||
setTitle(R.string.title_edit_profile)
|
setTitle(R.string.title_edit_profile)
|
||||||
_binding = ActivityEditProfileBinding.inflate(layoutInflater)
|
val binding = ActivityEditProfileBinding.inflate(layoutInflater)
|
||||||
|
this.binding = binding
|
||||||
setContentView(binding.root)
|
setContentView(binding.root)
|
||||||
supportActionBar?.setDisplayHomeAsUpEnabled(true)
|
supportActionBar?.setDisplayHomeAsUpEnabled(true)
|
||||||
|
|
||||||
|
@ -46,14 +46,22 @@ class EditProfileActivity : AbstractActivity() {
|
||||||
runCatching {
|
runCatching {
|
||||||
loadProfile()
|
loadProfile()
|
||||||
}.onFailure {
|
}.onFailure {
|
||||||
errorDialogBuilder(it)
|
withContext(Dispatchers.Main) {
|
||||||
.setPositiveButton(android.R.string.ok) { _, _ -> finish() }
|
errorDialogBuilder(it)
|
||||||
.show()
|
.setPositiveButton(android.R.string.ok) { _, _ -> finish() }
|
||||||
|
.show()
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
override fun onDestroy() {
|
||||||
|
super.onDestroy()
|
||||||
|
binding = null
|
||||||
|
}
|
||||||
|
|
||||||
private suspend fun loadProfile() {
|
private suspend fun loadProfile() {
|
||||||
|
val binding = binding ?: return
|
||||||
delay(200L)
|
delay(200L)
|
||||||
|
|
||||||
val profileId = intent.getLongExtra("profile_id", -1L)
|
val profileId = intent.getLongExtra("profile_id", -1L)
|
||||||
|
@ -67,7 +75,9 @@ class EditProfileActivity : AbstractActivity() {
|
||||||
profile.name = it
|
profile.name = it
|
||||||
ProfileManager.update(profile)
|
ProfileManager.update(profile)
|
||||||
} catch (e: Exception) {
|
} catch (e: Exception) {
|
||||||
errorDialogBuilder(e).show()
|
withContext(Dispatchers.Main) {
|
||||||
|
errorDialogBuilder(e).show()
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -120,6 +130,7 @@ class EditProfileActivity : AbstractActivity() {
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun updateAutoUpdate(newValue: String) {
|
private fun updateAutoUpdate(newValue: String) {
|
||||||
|
val binding = binding ?: return
|
||||||
val boolValue = EnabledType.valueOf(newValue).boolValue
|
val boolValue = EnabledType.valueOf(newValue).boolValue
|
||||||
if (profile.typed.autoUpdate == boolValue) {
|
if (profile.typed.autoUpdate == boolValue) {
|
||||||
return
|
return
|
||||||
|
@ -135,6 +146,7 @@ class EditProfileActivity : AbstractActivity() {
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun updateAutoUpdateInterval(newValue: String) {
|
private fun updateAutoUpdateInterval(newValue: String) {
|
||||||
|
val binding = binding ?: return
|
||||||
if (newValue.isBlank()) {
|
if (newValue.isBlank()) {
|
||||||
binding.autoUpdateInterval.error = getString(R.string.profile_input_required)
|
binding.autoUpdateInterval.error = getString(R.string.profile_input_required)
|
||||||
return
|
return
|
||||||
|
@ -156,6 +168,7 @@ class EditProfileActivity : AbstractActivity() {
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun updateProfile() {
|
private fun updateProfile() {
|
||||||
|
val binding = binding ?: return
|
||||||
binding.progressView.isVisible = true
|
binding.progressView.isVisible = true
|
||||||
lifecycleScope.launch(Dispatchers.IO) {
|
lifecycleScope.launch(Dispatchers.IO) {
|
||||||
delay(200)
|
delay(200)
|
||||||
|
@ -173,6 +186,7 @@ class EditProfileActivity : AbstractActivity() {
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun updateProfile(view: View) {
|
private fun updateProfile(view: View) {
|
||||||
|
val binding = binding ?: return
|
||||||
binding.progressView.isVisible = true
|
binding.progressView.isVisible = true
|
||||||
lifecycleScope.launch(Dispatchers.IO) {
|
lifecycleScope.launch(Dispatchers.IO) {
|
||||||
try {
|
try {
|
||||||
|
@ -195,6 +209,7 @@ class EditProfileActivity : AbstractActivity() {
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun checkProfile(button: View) {
|
private fun checkProfile(button: View) {
|
||||||
|
val binding = binding ?: return
|
||||||
binding.progressView.isVisible = true
|
binding.progressView.isVisible = true
|
||||||
lifecycleScope.launch(Dispatchers.IO) {
|
lifecycleScope.launch(Dispatchers.IO) {
|
||||||
delay(200)
|
delay(200)
|
||||||
|
|
|
@ -23,22 +23,26 @@ import java.io.File
|
||||||
|
|
||||||
class EditProfileContentActivity : AbstractActivity() {
|
class EditProfileContentActivity : AbstractActivity() {
|
||||||
|
|
||||||
private var _binding: ActivityEditProfileContentBinding? = null
|
private var binding: ActivityEditProfileContentBinding? = null
|
||||||
private val binding get() = _binding!!
|
|
||||||
|
|
||||||
private var _profile: Profile? = null
|
private var _profile: Profile? = null
|
||||||
private val profile get() = _profile!!
|
private val profile get() = _profile!!
|
||||||
override fun onCreate(savedInstanceState: Bundle?) {
|
override fun onCreate(savedInstanceState: Bundle?) {
|
||||||
super.onCreate(savedInstanceState)
|
super.onCreate(savedInstanceState)
|
||||||
|
|
||||||
setTitle(R.string.title_edit_configuration)
|
setTitle(R.string.title_edit_configuration)
|
||||||
_binding = ActivityEditProfileContentBinding.inflate(layoutInflater)
|
val binding = ActivityEditProfileContentBinding.inflate(layoutInflater)
|
||||||
|
this.binding = binding
|
||||||
setContentView(binding.root)
|
setContentView(binding.root)
|
||||||
supportActionBar?.setDisplayHomeAsUpEnabled(true)
|
supportActionBar?.setDisplayHomeAsUpEnabled(true)
|
||||||
binding.editor.language = JsonLanguage()
|
binding.editor.language = JsonLanguage()
|
||||||
loadConfiguration()
|
loadConfiguration()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
override fun onDestroy() {
|
||||||
|
super.onDestroy()
|
||||||
|
binding = null
|
||||||
|
}
|
||||||
|
|
||||||
private fun loadConfiguration() {
|
private fun loadConfiguration() {
|
||||||
lifecycleScope.launch(Dispatchers.IO) {
|
lifecycleScope.launch(Dispatchers.IO) {
|
||||||
runCatching {
|
runCatching {
|
||||||
|
@ -59,6 +63,7 @@ class EditProfileContentActivity : AbstractActivity() {
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun onOptionsItemSelected(item: MenuItem): Boolean {
|
override fun onOptionsItemSelected(item: MenuItem): Boolean {
|
||||||
|
val binding = binding ?: return false
|
||||||
when (item.itemId) {
|
when (item.itemId) {
|
||||||
R.id.action_undo -> {
|
R.id.action_undo -> {
|
||||||
if (binding.editor.canUndo()) binding.editor.undo()
|
if (binding.editor.canUndo()) binding.editor.undo()
|
||||||
|
@ -110,6 +115,7 @@ class EditProfileContentActivity : AbstractActivity() {
|
||||||
}
|
}
|
||||||
|
|
||||||
private suspend fun loadConfiguration0() {
|
private suspend fun loadConfiguration0() {
|
||||||
|
val binding = binding ?: return
|
||||||
delay(200L)
|
delay(200L)
|
||||||
|
|
||||||
val profileId = intent.getLongExtra("profile_id", -1L)
|
val profileId = intent.getLongExtra("profile_id", -1L)
|
||||||
|
|
|
@ -33,11 +33,10 @@ class NewProfileActivity : AbstractActivity() {
|
||||||
Import("Import");
|
Import("Import");
|
||||||
}
|
}
|
||||||
|
|
||||||
private var _binding: ActivityAddProfileBinding? = null
|
private var binding: ActivityAddProfileBinding? = null
|
||||||
private val binding get() = _binding!!
|
|
||||||
|
|
||||||
private val importFile =
|
private val importFile =
|
||||||
registerForActivityResult(ActivityResultContracts.GetContent()) { fileURI ->
|
registerForActivityResult(ActivityResultContracts.GetContent()) { fileURI ->
|
||||||
|
val binding = binding ?: return@registerForActivityResult
|
||||||
if (fileURI != null) {
|
if (fileURI != null) {
|
||||||
binding.sourceURL.editText?.setText(fileURI.toString())
|
binding.sourceURL.editText?.setText(fileURI.toString())
|
||||||
}
|
}
|
||||||
|
@ -47,7 +46,8 @@ class NewProfileActivity : AbstractActivity() {
|
||||||
super.onCreate(savedInstanceState)
|
super.onCreate(savedInstanceState)
|
||||||
|
|
||||||
setTitle(R.string.title_new_profile)
|
setTitle(R.string.title_new_profile)
|
||||||
_binding = ActivityAddProfileBinding.inflate(layoutInflater)
|
val binding = ActivityAddProfileBinding.inflate(layoutInflater)
|
||||||
|
this.binding = binding
|
||||||
setContentView(binding.root)
|
setContentView(binding.root)
|
||||||
supportActionBar?.setDisplayHomeAsUpEnabled(true)
|
supportActionBar?.setDisplayHomeAsUpEnabled(true)
|
||||||
|
|
||||||
|
@ -91,7 +91,13 @@ class NewProfileActivity : AbstractActivity() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
override fun onDestroy() {
|
||||||
|
super.onDestroy()
|
||||||
|
binding = null
|
||||||
|
}
|
||||||
|
|
||||||
private fun createProfile(view: View) {
|
private fun createProfile(view: View) {
|
||||||
|
val binding = binding ?: return
|
||||||
if (binding.name.showErrorIfEmpty()) {
|
if (binding.name.showErrorIfEmpty()) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
@ -126,6 +132,7 @@ class NewProfileActivity : AbstractActivity() {
|
||||||
}
|
}
|
||||||
|
|
||||||
private suspend fun createProfile0() {
|
private suspend fun createProfile0() {
|
||||||
|
val binding = binding ?: return
|
||||||
val typedProfile = TypedProfile()
|
val typedProfile = TypedProfile()
|
||||||
val profile = Profile(name = binding.name.text, typed = typedProfile)
|
val profile = Profile(name = binding.name.text, typed = typedProfile)
|
||||||
profile.userOrder = ProfileManager.nextOrder()
|
profile.userOrder = ProfileManager.nextOrder()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue