mirror of
https://github.com/SagerNet/sing-box-for-android.git
synced 2025-04-05 04:47:39 +03:00
Fix crash
This commit is contained in:
parent
03f9dc4883
commit
49a9fb3817
5 changed files with 23 additions and 20 deletions
|
@ -192,5 +192,9 @@ object DefaultNetworkListener {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun unregister() = Application.connectivity.unregisterNetworkCallback(Callback)
|
private fun unregister() {
|
||||||
|
runCatching {
|
||||||
|
Application.connectivity.unregisterNetworkCallback(Callback)
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
|
@ -7,7 +7,7 @@ class ProxyService : Service(), PlatformInterfaceWrapper {
|
||||||
|
|
||||||
private val service = BoxService(this, this)
|
private val service = BoxService(this, this)
|
||||||
|
|
||||||
override fun onStartCommand(intent: Intent, flags: Int, startId: Int) =
|
override fun onStartCommand(intent: Intent?, flags: Int, startId: Int) =
|
||||||
service.onStartCommand(intent, flags, startId)
|
service.onStartCommand(intent, flags, startId)
|
||||||
|
|
||||||
override fun onBind(intent: Intent) = service.onBind(intent)
|
override fun onBind(intent: Intent) = service.onBind(intent)
|
||||||
|
|
|
@ -29,18 +29,14 @@ import kotlinx.coroutines.withContext
|
||||||
|
|
||||||
class ConfigurationFragment : Fragment() {
|
class ConfigurationFragment : Fragment() {
|
||||||
|
|
||||||
private var _adapter: Adapter? = null
|
private var adapter: Adapter? = null
|
||||||
private var adapter: Adapter
|
|
||||||
get() = _adapter as Adapter
|
|
||||||
set(value) {
|
|
||||||
_adapter = value
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun onCreateView(
|
override fun onCreateView(
|
||||||
inflater: LayoutInflater, container: ViewGroup?, savedInstanceState: Bundle?
|
inflater: LayoutInflater, container: ViewGroup?, savedInstanceState: Bundle?
|
||||||
): View {
|
): View {
|
||||||
val binding = FragmentConfigurationBinding.inflate(inflater, container, false)
|
val binding = FragmentConfigurationBinding.inflate(inflater, container, false)
|
||||||
adapter = Adapter(lifecycleScope, binding)
|
val adapter = Adapter(lifecycleScope, binding)
|
||||||
|
this.adapter = adapter
|
||||||
binding.profileList.also {
|
binding.profileList.also {
|
||||||
it.layoutManager = LinearLayoutManager(requireContext())
|
it.layoutManager = LinearLayoutManager(requireContext())
|
||||||
it.adapter = adapter
|
it.adapter = adapter
|
||||||
|
@ -69,17 +65,17 @@ class ConfigurationFragment : Fragment() {
|
||||||
|
|
||||||
override fun onResume() {
|
override fun onResume() {
|
||||||
super.onResume()
|
super.onResume()
|
||||||
_adapter?.reload()
|
adapter?.reload()
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun onDestroyView() {
|
override fun onDestroyView() {
|
||||||
super.onDestroyView()
|
super.onDestroyView()
|
||||||
ProfileManager.unregisterCallback(this::updateProfiles)
|
ProfileManager.unregisterCallback(this::updateProfiles)
|
||||||
_adapter = null
|
adapter = null
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun updateProfiles() {
|
private fun updateProfiles() {
|
||||||
_adapter?.reload()
|
adapter?.reload()
|
||||||
}
|
}
|
||||||
|
|
||||||
class Adapter(
|
class Adapter(
|
||||||
|
@ -94,8 +90,10 @@ class ConfigurationFragment : Fragment() {
|
||||||
internal fun reload() {
|
internal fun reload() {
|
||||||
if (isMoving) return
|
if (isMoving) return
|
||||||
scope.launch(Dispatchers.IO) {
|
scope.launch(Dispatchers.IO) {
|
||||||
items = ProfileManager.list().toMutableList()
|
val newItems = ProfileManager.list().toMutableList()
|
||||||
withContext(Dispatchers.Main) {
|
withContext(Dispatchers.Main) {
|
||||||
|
items = newItems
|
||||||
|
notifyDataSetChanged()
|
||||||
if (items.isEmpty()) {
|
if (items.isEmpty()) {
|
||||||
parent.statusText.isVisible = true
|
parent.statusText.isVisible = true
|
||||||
parent.profileList.isVisible = false
|
parent.profileList.isVisible = false
|
||||||
|
@ -103,7 +101,6 @@ class ConfigurationFragment : Fragment() {
|
||||||
parent.statusText.isVisible = false
|
parent.statusText.isVisible = false
|
||||||
parent.profileList.isVisible = true
|
parent.profileList.isVisible = true
|
||||||
}
|
}
|
||||||
notifyDataSetChanged()
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -31,13 +31,12 @@ import kotlinx.coroutines.withContext
|
||||||
|
|
||||||
class SettingsFragment : Fragment() {
|
class SettingsFragment : Fragment() {
|
||||||
|
|
||||||
private var _binding: FragmentSettingsBinding? = null
|
private var binding: FragmentSettingsBinding? = 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 = FragmentSettingsBinding.inflate(inflater, container, false)
|
val binding = FragmentSettingsBinding.inflate(inflater, container, false)
|
||||||
|
this.binding = binding
|
||||||
onCreate()
|
onCreate()
|
||||||
return binding.root
|
return binding.root
|
||||||
}
|
}
|
||||||
|
@ -52,6 +51,7 @@ class SettingsFragment : Fragment() {
|
||||||
|
|
||||||
private fun onCreate() {
|
private fun onCreate() {
|
||||||
val activity = activity as MainActivity? ?: return
|
val activity = activity as MainActivity? ?: return
|
||||||
|
val binding = binding ?: return
|
||||||
binding.versionText.text = Libbox.version()
|
binding.versionText.text = Libbox.version()
|
||||||
binding.clearButton.setOnClickListener {
|
binding.clearButton.setOnClickListener {
|
||||||
lifecycleScope.launch(Dispatchers.IO) {
|
lifecycleScope.launch(Dispatchers.IO) {
|
||||||
|
@ -119,6 +119,7 @@ class SettingsFragment : Fragment() {
|
||||||
|
|
||||||
private suspend fun reloadSettings() {
|
private suspend fun reloadSettings() {
|
||||||
val activity = activity ?: return
|
val activity = activity ?: return
|
||||||
|
val binding = binding ?: return
|
||||||
val dataSize = Libbox.formatBytes(
|
val dataSize = Libbox.formatBytes(
|
||||||
(activity.getExternalFilesDir(null) ?: activity.filesDir)
|
(activity.getExternalFilesDir(null) ?: activity.filesDir)
|
||||||
.walkTopDown().filter { it.isFile }.map { it.length() }.sum()
|
.walkTopDown().filter { it.isFile }.map { it.length() }.sum()
|
||||||
|
@ -145,7 +146,7 @@ class SettingsFragment : Fragment() {
|
||||||
|
|
||||||
override fun onDestroyView() {
|
override fun onDestroyView() {
|
||||||
super.onDestroyView()
|
super.onDestroyView()
|
||||||
_binding = null
|
binding = null
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
|
@ -36,7 +36,8 @@
|
||||||
<androidx.viewpager2.widget.ViewPager2
|
<androidx.viewpager2.widget.ViewPager2
|
||||||
android:id="@+id/dashboardPager"
|
android:id="@+id/dashboardPager"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="match_parent" />
|
android:layout_height="match_parent"
|
||||||
|
android:saveEnabled="false" />
|
||||||
|
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue