Advertisement
Guest User

QuestionVictoryFragmentXML

a guest
Oct 23rd, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.37 KB | None | 0 0
  1. <android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2. xmlns:app="http://schemas.android.com/apk/res-auto"
  3. xmlns:tools="http://schemas.android.com/tools"
  4. android:layout_width="match_parent"
  5. android:layout_height="match_parent"
  6. tools:context="com.example.lukas.programmeringsuppgift3.MainActivity">
  7.  
  8. <!-- TODO: Update blank fragment layout -->
  9.  
  10. <TextView
  11. android:id="@+id/tvCorrectAnswers"
  12. android:layout_width="0dp"
  13. android:layout_height="wrap_content"
  14. android:text="TextView"
  15. app:layout_constraintTop_toTopOf="parent"
  16. android:layout_marginTop="8dp"
  17. android:layout_marginRight="8dp"
  18. app:layout_constraintRight_toRightOf="parent"
  19. android:layout_marginLeft="8dp"
  20. app:layout_constraintLeft_toLeftOf="parent" />
  21.  
  22. <Button
  23. android:id="@+id/btnMenu"
  24. android:layout_width="wrap_content"
  25. android:layout_height="wrap_content"
  26. android:text="Button"
  27. android:layout_marginRight="8dp"
  28. app:layout_constraintRight_toRightOf="parent"
  29. android:layout_marginLeft="8dp"
  30. app:layout_constraintLeft_toLeftOf="parent"
  31. app:layout_constraintBottom_toBottomOf="parent"
  32. android:layout_marginBottom="8dp" />
  33. </android.support.constraint.ConstraintLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement