Started fronend( input feeld)

This commit is contained in:
2020-10-07 17:43:42 +02:00
parent 014e5129da
commit 1dad828f67
8 changed files with 153 additions and 11 deletions

View File

@@ -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<String>() {
@Override
public void onChanged(@Nullable String s) {

View File

@@ -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<String> getText() {

View File

@@ -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<String>() {
@Override
public void onChanged(@Nullable String s) {

View File

@@ -7,9 +7,9 @@
tools:context=".ui.dashboard.DashboardFragment">
<TextView
android:id="@+id/text_dashboard"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/text_question"
android:layout_width="187dp"
android:layout_height="56dp"
android:layout_marginStart="8dp"
android:layout_marginTop="8dp"
android:layout_marginEnd="8dp"
@@ -18,5 +18,55 @@
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="0.19" />
<Button
android:id="@+id/button_awnser1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="awnser1"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.13"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/text_question"
app:layout_constraintVertical_bias="0.3" />
<Button
android:id="@+id/button_awnser3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="awnser3"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.13"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/text_question"
app:layout_constraintVertical_bias="0.592" />
<Button
android:id="@+id/button_awnser4"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="awnser4"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.82"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/text_question"
app:layout_constraintVertical_bias="0.592" />
<Button
android:id="@+id/button_awnser2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="awnser2"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.82"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/text_question"
app:layout_constraintVertical_bias="0.299" />
</androidx.constraintlayout.widget.ConstraintLayout>

View File

@@ -7,9 +7,25 @@
tools:context=".ui.notifications.NotificationsFragment">
<TextView
android:id="@+id/text_notifications"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/text_German_input"
android:layout_width="221dp"
android:layout_height="41dp"
android:layout_marginStart="8dp"
android:layout_marginTop="8dp"
android:layout_marginEnd="8dp"
android:text="Test"
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"
app:layout_constraintVertical_bias="0.376" />
<TextView
android:id="@+id/text_englsich_input"
android:layout_width="221dp"
android:layout_height="73dp"
android:layout_marginStart="8dp"
android:layout_marginTop="8dp"
android:layout_marginEnd="8dp"
@@ -18,5 +34,6 @@
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="0.186" />
</androidx.constraintlayout.widget.ConstraintLayout>