Unclutter this mess we call LauncherActivity

also migrate search bar to Jetpack Compose
This commit is contained in:
MM20
2022-01-25 17:55:57 +01:00
parent 0447d3072d
commit f701e90c47
37 changed files with 1471 additions and 1183 deletions
+2 -2
View File
@@ -48,7 +48,7 @@
android:label="@string/title_activity_settings"
android:launchMode="singleTask"
android:exported="true"
android:parentActivityName=".ui.legacy.activity.LauncherActivity"
android:parentActivityName=".ui.launcher.LauncherActivity"
android:screenOrientation="portrait"
android:taskAffinity="de.mm20.launcher2.settings"
android:theme="@style/SettingsTheme">
@@ -58,7 +58,7 @@
</intent-filter>
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value="de.mm20.launcher2.ui.legacy.activity.LauncherActivity" />
android:value="de.mm20.launcher2.ui.launcher.LauncherActivity" />
</activity>
<activity
@@ -7,7 +7,7 @@ import androidx.appcompat.app.AppCompatActivity
import androidx.fragment.app.Fragment
import de.mm20.launcher2.fragment.PreferencesMainFragment
import de.mm20.launcher2.fragment.PreferencesServicesFragment
import de.mm20.launcher2.ui.legacy.activity.LauncherActivity
import de.mm20.launcher2.ui.launcher.LauncherActivity
import de.mm20.launcher2.ui.legacy.helper.ThemeHelper
class SettingsActivity : AppCompatActivity() {