[ADD] Location Tests + ID at every XML file

This commit is contained in:
Robin Koedood
2021-01-05 10:58:33 +01:00
parent bcd9eb6378
commit d3cab8c70d
14 changed files with 57 additions and 1 deletions

View File

@@ -4,6 +4,7 @@
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/mainActivity"
tools:context=".MainActivity">
<FrameLayout

View File

@@ -2,6 +2,7 @@
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:id="@+id/couponItem"
android:layout_height="wrap_content">
<androidx.constraintlayout.widget.ConstraintLayout

View File

@@ -5,6 +5,7 @@
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/primaryColour"
android:id="@+id/couponFragment"
tools:context=".fragments.LocationFragment">
<TextView

View File

@@ -4,6 +4,7 @@
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/homeFragment"
tools:context=".fragments.HomeFragment">

View File

@@ -5,6 +5,7 @@
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/primaryColour"
android:id="@+id/locationFragment"
tools:context=".fragments.LocationFragment">
<TextView
@@ -35,5 +36,5 @@
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/routeBackButton" />
app:layout_constraintTop_toBottomOf="@+id/locationBackButton" />
</androidx.constraintlayout.widget.ConstraintLayout>

View File

@@ -5,6 +5,7 @@
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/primaryColour"
android:id="@+id/locationDetailFragment"
tools:context=".fragments.LocationDetailFragment">
<TextView

View File

@@ -5,6 +5,7 @@
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/primaryColour"
android:id="@+id/routeFragment"
tools:context=".fragments.RouteFragment">
<ImageButton

View File

@@ -5,6 +5,7 @@
android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:background="@color/primaryColour"
android:id="@+id/routeDetailFragment"
tools:context=".fragments.RouteDetailFragment">
<ImageButton

View File

@@ -5,6 +5,7 @@
android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:background="@color/primaryColour"
android:id="@+id/settingFragment"
tools:context=".fragments.SettingsFragment">
<androidx.appcompat.widget.AppCompatImageButton

View File

@@ -5,6 +5,7 @@
android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:background="@color/primaryColour"
android:id="@+id/statisticsFragment"
tools:context=".fragments.StatisticFragment">
<TextView

View File

@@ -4,6 +4,7 @@
android:layout_height="50dp"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:background="@color/secondaryColour"
android:id="@+id/locationItem"
android:layout_margin="20dp">
<ImageView

View File

@@ -4,6 +4,7 @@
android:layout_height="50dp"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:background="@color/secondaryColour"
android:id="@+id/routeItem"
android:layout_margin="20dp">
<ImageView