diff --git a/app/src/main/java/io/nekohasekai/sfa/ui/profileoverride/PerAppProxyActivity.kt b/app/src/main/java/io/nekohasekai/sfa/ui/profileoverride/PerAppProxyActivity.kt index 205b50e..4103798 100644 --- a/app/src/main/java/io/nekohasekai/sfa/ui/profileoverride/PerAppProxyActivity.kt +++ b/app/src/main/java/io/nekohasekai/sfa/ui/profileoverride/PerAppProxyActivity.kt @@ -18,6 +18,7 @@ import android.view.MenuItem import android.view.ViewGroup import android.widget.TextView import android.widget.Toast +import androidx.appcompat.widget.SearchView import androidx.core.content.getSystemService import androidx.core.view.isGone import androidx.lifecycle.lifecycleScope @@ -46,6 +47,7 @@ class PerAppProxyActivity : AbstractActivity() { private val appList = mutableListOf() private var hideSystem = false + private var searchKeyword = "" private val filteredAppList = mutableListOf() override fun onCreate(savedInstanceState: Bundle?) { @@ -147,23 +149,35 @@ class PerAppProxyActivity : AbstractActivity() { override fun onCreateOptionsMenu(menu: Menu?): Boolean { menuInflater.inflate(R.menu.per_app_menu, menu) + + if (menu != null) { + val searchView = menu.findItem(R.id.action_search).actionView as SearchView + searchView.setOnQueryTextListener(object : SearchView.OnQueryTextListener { + override fun onQueryTextSubmit(query: String): Boolean { + return true + } + + override fun onQueryTextChange(newText: String): Boolean { + searchKeyword = newText + filterApps() + return true + } + }) + } + return super.onCreateOptionsMenu(menu) } - @SuppressLint("NotifyDataSetChanged") override fun onOptionsItemSelected(item: MenuItem): Boolean { when (item.itemId) { R.id.action_hide_system -> { hideSystem = !hideSystem - filteredAppList.clear() if (hideSystem) { - filteredAppList.addAll(appList.filter { !it.isSystemApp }) item.setTitle(R.string.menu_show_system) } else { - filteredAppList.addAll(appList) item.setTitle(R.string.menu_hide_system) } - adapter.notifyDataSetChanged() + filterApps() return true } @@ -192,6 +206,24 @@ class PerAppProxyActivity : AbstractActivity() { return super.onOptionsItemSelected(item) } + @SuppressLint("NotifyDataSetChanged") + private fun filterApps() { + filteredAppList.clear() + if (searchKeyword.isNotEmpty()) { + filteredAppList.addAll(appList.filter { + (!hideSystem || !it.isSystemApp) && + (it.name.contains(searchKeyword, true) + || it.packageName.contains(searchKeyword, true)) + }) + adapter.notifyDataSetChanged() + } else if (hideSystem) { + filteredAppList.addAll(appList.filter { !it.isSystemApp }) + } else { + filteredAppList.addAll(appList) + } + adapter.notifyDataSetChanged() + } + private fun importFromClipboard() { val clipboardManager = getSystemService()!! if (!clipboardManager.hasPrimaryClip()) { diff --git a/app/src/main/res/drawable/ic_find_in_page_24.xml b/app/src/main/res/drawable/ic_find_in_page_24.xml new file mode 100644 index 0000000..a5ab5f0 --- /dev/null +++ b/app/src/main/res/drawable/ic_find_in_page_24.xml @@ -0,0 +1,5 @@ + + + diff --git a/app/src/main/res/menu/per_app_menu.xml b/app/src/main/res/menu/per_app_menu.xml index 71a918d..eecaa67 100644 --- a/app/src/main/res/menu/per_app_menu.xml +++ b/app/src/main/res/menu/per_app_menu.xml @@ -1,5 +1,13 @@ - + + + Import profile Are you sure to import profile %s? iCloud profile is not support on current platform + Search \ No newline at end of file