-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
WIP: Adds routes for the other fragments
- Loading branch information
1 parent
329650f
commit 086b540
Showing
9 changed files
with
195 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 6 additions & 0 deletions
6
networksurvey/src/main/res/layout/container_bluetooth_details_fragment.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<androidx.fragment.app.FragmentContainerView xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:id="@+id/bluetooth_details_fragment_container_view" | ||
android:layout_width="match_parent" | ||
android:layout_height="match_parent" | ||
android:name="com.craxiom.networksurvey.fragments.BluetoothDetailsFragment" /> |
6 changes: 6 additions & 0 deletions
6
networksurvey/src/main/res/layout/container_mqtt_qr_code_share_fragment.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<androidx.fragment.app.FragmentContainerView xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:id="@+id/mqtt_qr_code_share_fragment_container_view" | ||
android:layout_width="match_parent" | ||
android:layout_height="match_parent" | ||
android:name="com.craxiom.networksurvey.fragments.QrCodeShareFragment" /> |
6 changes: 6 additions & 0 deletions
6
networksurvey/src/main/res/layout/container_tower_map_fragment.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<androidx.fragment.app.FragmentContainerView xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:id="@+id/tower_map_fragment_container_view" | ||
android:layout_width="match_parent" | ||
android:layout_height="match_parent" | ||
android:name="com.craxiom.networksurvey.fragments.TowerMapFragment" /> |
6 changes: 6 additions & 0 deletions
6
networksurvey/src/main/res/layout/container_wifi_details_fragment.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<androidx.fragment.app.FragmentContainerView xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:id="@+id/wifi_details_fragment_container_view" | ||
android:layout_width="match_parent" | ||
android:layout_height="match_parent" | ||
android:name="com.craxiom.networksurvey.fragments.WifiDetailsFragment" /> |
6 changes: 6 additions & 0 deletions
6
networksurvey/src/main/res/layout/container_wifi_spectrum_fragment.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<androidx.fragment.app.FragmentContainerView xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:id="@+id/wifi_spectrum_fragment_container_view" | ||
android:layout_width="match_parent" | ||
android:layout_height="match_parent" | ||
android:name="com.craxiom.networksurvey.fragments.WifiSpectrumFragment" /> |