mirror of
https://github.com/jrpie/Launcher.git
synced 2025-04-19 02:10:54 +02:00
chore: refactored code
This commit is contained in:
parent
ac2aa49ca1
commit
6e28fbfea5
43 changed files with 1367 additions and 746 deletions
|
@ -7,7 +7,7 @@
|
|||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:longClickable="false"
|
||||
tools:context=".HomeActivity">
|
||||
tools:context=".ui.HomeActivity">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/home_upper_view"
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:fitsSystemWindows="true"
|
||||
tools:context=".list.ListActivity">
|
||||
tools:context=".ui.list.ListActivity">
|
||||
|
||||
<com.google.android.material.appbar.AppBarLayout
|
||||
android:id="@+id/list_appbar"
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
android:id="@+id/settings_container"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
tools:context=".settings.SettingsActivity">
|
||||
tools:context=".ui.settings.SettingsActivity">
|
||||
|
||||
<com.google.android.material.appbar.AppBarLayout
|
||||
android:id="@+id/settings_appbar"
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
<androidx.fragment.app.FragmentContainerView
|
||||
android:id="@+id/settings_actions_rview_fragment"
|
||||
android:name="de.jrpie.android.launcher.settings.actions.SettingsFragmentActionsRecycler"
|
||||
android:name="de.jrpie.android.launcher.ui.settings.actions.SettingsFragmentActionsRecycler"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="0dp"
|
||||
android:layout_marginBottom="16dp"
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
android:paddingLeft="32sp"
|
||||
android:paddingTop="16sp"
|
||||
android:paddingRight="32sp"
|
||||
tools:context=".settings.meta.SettingsFragmentMeta">
|
||||
tools:context=".ui.settings.meta.SettingsFragmentMeta">
|
||||
|
||||
<Button
|
||||
android:id="@+id/settings_meta_button_view_tutorial"
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
android:id="@+id/tutorial_container"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
tools:context=".tutorial.TutorialActivity">
|
||||
tools:context=".ui.tutorial.TutorialActivity">
|
||||
|
||||
|
||||
<androidx.viewpager.widget.ViewPager
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
android:paddingRight="32sp"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
tools:context=".tutorial.tabs.TutorialFragmentConcept">
|
||||
tools:context=".ui.tutorial.tabs.TutorialFragmentConcept">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tutorial_concept_title"
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
android:paddingRight="32sp"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
tools:context=".tutorial.tabs.TutorialFragmentFinish">
|
||||
tools:context=".ui.tutorial.tabs.TutorialFragmentFinish">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tutorial_finish_title"
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
android:layout_height="match_parent"
|
||||
android:paddingLeft="32sp"
|
||||
android:paddingRight="32sp"
|
||||
tools:context=".tutorial.tabs.TutorialFragmentSetup">
|
||||
tools:context=".ui.tutorial.tabs.TutorialFragmentSetup">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tutorial_setup_title"
|
||||
|
@ -35,7 +35,7 @@
|
|||
|
||||
<fragment
|
||||
android:id="@+id/tutorial_setup_actions_rview_fragment"
|
||||
android:name="de.jrpie.android.launcher.settings.actions.SettingsFragmentActionsRecycler"
|
||||
android:name="de.jrpie.android.launcher.ui.settings.actions.SettingsFragmentActionsRecycler"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="0dp"
|
||||
android:layout_marginTop="32dp"
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
android:paddingRight="32sp"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
tools:context=".tutorial.tabs.TutorialFragmentStart">
|
||||
tools:context=".ui.tutorial.tabs.TutorialFragmentStart">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tutorial_start_text"
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
android:layout_height="match_parent"
|
||||
android:paddingLeft="32sp"
|
||||
android:paddingRight="32sp"
|
||||
tools:context=".tutorial.tabs.TutorialFragmentUsage">
|
||||
tools:context=".ui.tutorial.tabs.TutorialFragmentUsage">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tutorial_usage_title"
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<string name="alert_cant_open_title">Can\'t open app</string>
|
||||
<string name="alert_cant_open_message">Want to change its settings?</string>
|
||||
|
||||
<string name="toast_cant_open_message">Open settings to choose an app for this action</string>
|
||||
<string name="toast_cant_open_message">Open settings to choose an action for this gesture</string>
|
||||
|
||||
<!--
|
||||
-
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue