Guest User

Untitled

a guest
Oct 23rd, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.88 KB | None | 0 0
  1. onView(withText("To create a test configuration in Android Studio, complete the following steps")).check(matches(isDisplayed()));
  2.  
  3. <?xml version="1.0" encoding="utf-8"?>
  4. <android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  5. xmlns:app="http://schemas.android.com/apk/res-auto"
  6. android:layout_width="match_parent"
  7. android:layout_height="match_parent">
  8.  
  9. <TextView
  10. android:layout_width="0dp"
  11. android:layout_height="256dp"
  12. android:layout_marginBottom="8dp"
  13. android:layout_marginEnd="8dp"
  14. android:layout_marginStart="8dp"
  15. android:background="#fca"
  16. android:textSize="48sp"
  17. app:layout_constraintBottom_toBottomOf="parent"
  18. app:layout_constraintEnd_toEndOf="parent"
  19. app:layout_constraintStart_toStartOf="parent" />
  20.  
  21. </android.support.constraint.ConstraintLayout>
Add Comment
Please, Sign In to add comment