fragment_notifications.xml 1.1 KB

12345678910111213141516171819202122232425262728
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:app="http://schemas.android.com/apk/res-auto"
  4. xmlns:tools="http://schemas.android.com/tools"
  5. android:layout_width="match_parent"
  6. android:layout_height="match_parent"
  7. android:background="@color/black"
  8. tools:context=".ui.notifications.NotificationsFragment">
  9. <ScrollView
  10. android:layout_width="match_parent"
  11. android:layout_height="wrap_content"
  12. android:layout_marginTop="8dp"
  13. app:layout_constraintEnd_toEndOf="parent"
  14. app:layout_constraintStart_toStartOf="parent"
  15. app:layout_constraintTop_toTopOf="parent">
  16. <TextView
  17. android:id="@+id/text_notifications"
  18. android:layout_width="match_parent"
  19. android:layout_height="wrap_content"
  20. android:textAlignment="textStart"
  21. android:textColor="#2EFF00"
  22. android:textSize="13sp"
  23. tools:text="111111" />
  24. </ScrollView>
  25. </androidx.constraintlayout.widget.ConstraintLayout>