All the nav buttons are there now, successfully compiles.

This commit is contained in:
2020-06-13 07:09:32 -05:00
parent f449e52280
commit 07360067be
17 changed files with 137 additions and 136 deletions

View File

@@ -4,10 +4,10 @@
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".ui.dashboard.DashboardFragment">
tools:context=".ui.editor.EditorFragment">
<TextView
android:id="@+id/text_dashboard"
android:id="@+id/text_editor"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginStart="8dp"

View File

@@ -4,10 +4,10 @@
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".ui.notifications.NotificationsFragment">
tools:context=".ui.search.SearchFragment">
<TextView
android:id="@+id/text_notifications"
android:id="@+id/text_search"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginStart="8dp"

View File

@@ -4,10 +4,10 @@
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".ui.home.HomeFragment">
tools:context=".ui.settings.SettingsFragment">
<TextView
android:id="@+id/text_home"
android:id="@+id/text_settings"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginStart="8dp"

View File

@@ -1,14 +1,22 @@
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".TACNETFragment">
tools:context=".ui.tacnet.TACNETFragment">
<!-- TODO: Update blank fragment layout -->
<TextView
android:id="@+id/text_tacnet"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="@string/hello_blank_fragment" />
</FrameLayout>
android:layout_height="wrap_content"
android:layout_marginStart="8dp"
android:layout_marginTop="8dp"
android:layout_marginEnd="8dp"
android:textAlignment="center"
android:textSize="20sp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>

View File

@@ -3,28 +3,28 @@
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/mobile_navigation"
app:startDestination="@+id/navigation_home">
app:startDestination="@+id/navigation_editor">
<fragment
android:id="@+id/navigation_tacnet"
android:name="org.timecrafters.TimeCraftersConfigurationTool.ui.tacnet.TACNETFragment"
android:label="@string/title_tacnet"
tools:layout="@layout/fragment_tacnet" />
<fragment
android:id="@+id/navigation_editor"
android:name="org.timecrafters.TimeCraftersConfigurationTool.ui.home.HomeFragment"
android:label="@string/title_home"
tools:layout="@layout/fragment_home" />
android:name="org.timecrafters.TimeCraftersConfigurationTool.ui.editor.EditorFragment"
android:label="@string/title_editor"
tools:layout="@layout/fragment_editor" />
<fragment
android:id="@+id/navigation_dashboard"
android:name="org.timecrafters.TimeCraftersConfigurationTool.ui.dashboard.DashboardFragment"
android:label="@string/title_dashboard"
tools:layout="@layout/fragment_dashboard" />
android:id="@+id/navigation_settings"
android:name="org.timecrafters.TimeCraftersConfigurationTool.ui.settings.SettingsFragment"
android:label="@string/title_settings"
tools:layout="@layout/fragment_settings" />
<fragment
android:id="@+id/navigation_notifications"
android:name="org.timecrafters.TimeCraftersConfigurationTool.ui.notifications.NotificationsFragment"
android:label="@string/title_notifications"
tools:layout="@layout/fragment_notifications" />
<fragment
android:id="@+id/TACNETFragment"
android:name="org.timecrafters.TimeCraftersConfigurationTool.TACNETFragment"
android:label="fragment_tacnet"
tools:layout="@layout/fragment_tacnet" />
android:id="@+id/navigation_search"
android:name="org.timecrafters.TimeCraftersConfigurationTool.ui.search.SearchFragment"
android:label="@string/title_search"
tools:layout="@layout/fragment_search" />
</navigation>

View File

@@ -1,9 +1,5 @@
<resources>
<string name="app_name">TimeCraftersConfigurationTool</string>
<string name="title_home">Home</string>
<string name="title_dashboard">Dashboard</string>
<string name="title_notifications">Notifications</string>
<!-- TODO: Remove or change this placeholder text -->
<string name="hello_blank_fragment">Hello blank fragment</string>
<string name="title_editor">Editor</string>
<string name="title_search">Search</string>