diff --git a/.idea/codeStyles/Project.xml b/.idea/codeStyles/Project.xml
index 663459a..d6c2ebe 100644
--- a/.idea/codeStyles/Project.xml
+++ b/.idea/codeStyles/Project.xml
@@ -9,6 +9,9 @@
+
+
+
diff --git a/.idea/markdown-navigator-enh.xml b/.idea/markdown-navigator-enh.xml
new file mode 100644
index 0000000..a8fcc84
--- /dev/null
+++ b/.idea/markdown-navigator-enh.xml
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/markdown-navigator.xml b/.idea/markdown-navigator.xml
new file mode 100644
index 0000000..a2fc086
--- /dev/null
+++ b/.idea/markdown-navigator.xml
@@ -0,0 +1,62 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/java/org/ddnss/sfs/git/wdg/vokabel_trainer/ui/dashboard/DashboardFragment.java b/app/src/main/java/org/ddnss/sfs/git/wdg/vokabel_trainer/ui/dashboard/DashboardFragment.java
index a169fc8..392d818 100644
--- a/app/src/main/java/org/ddnss/sfs/git/wdg/vokabel_trainer/ui/dashboard/DashboardFragment.java
+++ b/app/src/main/java/org/ddnss/sfs/git/wdg/vokabel_trainer/ui/dashboard/DashboardFragment.java
@@ -23,7 +23,7 @@ public class DashboardFragment extends Fragment {
dashboardViewModel =
ViewModelProviders.of(this).get(DashboardViewModel.class);
View root = inflater.inflate(R.layout.fragment_dashboard, container, false);
- final TextView textView = root.findViewById(R.id.text_dashboard);
+ final TextView textView = root.findViewById(R.id.text_question);
dashboardViewModel.getText().observe(getViewLifecycleOwner(), new Observer() {
@Override
public void onChanged(@Nullable String s) {
diff --git a/app/src/main/java/org/ddnss/sfs/git/wdg/vokabel_trainer/ui/dashboard/DashboardViewModel.java b/app/src/main/java/org/ddnss/sfs/git/wdg/vokabel_trainer/ui/dashboard/DashboardViewModel.java
index 9cf0575..02045d4 100644
--- a/app/src/main/java/org/ddnss/sfs/git/wdg/vokabel_trainer/ui/dashboard/DashboardViewModel.java
+++ b/app/src/main/java/org/ddnss/sfs/git/wdg/vokabel_trainer/ui/dashboard/DashboardViewModel.java
@@ -10,7 +10,7 @@ public class DashboardViewModel extends ViewModel {
public DashboardViewModel() {
mText = new MutableLiveData<>();
- mText.setValue("This is the Abfragen segment");
+ mText.setValue("This is the question text feld");
}
public LiveData getText() {
diff --git a/app/src/main/java/org/ddnss/sfs/git/wdg/vokabel_trainer/ui/notifications/NotificationsFragment.java b/app/src/main/java/org/ddnss/sfs/git/wdg/vokabel_trainer/ui/notifications/NotificationsFragment.java
index 26059a7..a2a694d 100644
--- a/app/src/main/java/org/ddnss/sfs/git/wdg/vokabel_trainer/ui/notifications/NotificationsFragment.java
+++ b/app/src/main/java/org/ddnss/sfs/git/wdg/vokabel_trainer/ui/notifications/NotificationsFragment.java
@@ -23,7 +23,7 @@ public class NotificationsFragment extends Fragment {
notificationsViewModel =
ViewModelProviders.of(this).get(NotificationsViewModel.class);
View root = inflater.inflate(R.layout.fragment_notifications, container, false);
- final TextView textView = root.findViewById(R.id.text_notifications);
+ final TextView textView = root.findViewById(R.id.text_englsich_input);
notificationsViewModel.getText().observe(getViewLifecycleOwner(), new Observer() {
@Override
public void onChanged(@Nullable String s) {
diff --git a/app/src/main/res/layout/fragment_dashboard.xml b/app/src/main/res/layout/fragment_dashboard.xml
index 166ab0e..9b9a0eb 100644
--- a/app/src/main/res/layout/fragment_dashboard.xml
+++ b/app/src/main/res/layout/fragment_dashboard.xml
@@ -7,9 +7,9 @@
tools:context=".ui.dashboard.DashboardFragment">
+ app:layout_constraintTop_toTopOf="parent"
+ app:layout_constraintVertical_bias="0.19" />
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/fragment_notifications.xml b/app/src/main/res/layout/fragment_notifications.xml
index d417935..18f48ee 100644
--- a/app/src/main/res/layout/fragment_notifications.xml
+++ b/app/src/main/res/layout/fragment_notifications.xml
@@ -7,9 +7,25 @@
tools:context=".ui.notifications.NotificationsFragment">
+
+
+ app:layout_constraintTop_toTopOf="parent"
+ app:layout_constraintVertical_bias="0.186" />
\ No newline at end of file