Advertisement
Guest User

Untitled

a guest
Mar 21st, 2019
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.55 KB | None | 0 0
  1. <android.support.design.widget.TextInputLayout
  2. android:id="@+id/stepTextInputLayout"
  3. style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox"
  4. android:layout_width="match_parent"
  5. android:layout_height="wrap_content"
  6. android:textColorHint="@color/colorAccent">
  7.  
  8. <android.support.design.widget.TextInputEditText
  9. android:id="@+id/stepTextInputEditText"
  10. android:layout_width="match_parent"
  11. android:layout_height="wrap_content"
  12. android:hint="Step" />
  13. </android.support.design.widget.TextInputLayout>
  14.  
  15. <LinearLayout
  16. android:id="@+id/stepImgsBlock"
  17. android:layout_width="match_parent"
  18. android:layout_height="match_parent"
  19. android:orientation="horizontal"
  20. android:padding="5dp">
  21.  
  22. <ImageView
  23. android:id="@+id/img1"
  24. android:layout_width="wrap_content"
  25. android:layout_height="wrap_content"
  26. android:layout_weight="1"
  27. app:srcCompat="@mipmap/ic_launcher" />
  28.  
  29. <ImageView
  30. android:id="@+id/img2"
  31. android:layout_width="wrap_content"
  32. android:layout_height="wrap_content"
  33. android:layout_weight="1"
  34. app:srcCompat="@mipmap/ic_launcher" />
  35.  
  36. <ImageView
  37. android:id="@+id/img3"
  38. android:layout_width="wrap_content"
  39. android:layout_height="wrap_content"
  40. android:layout_weight="1"
  41. app:srcCompat="@mipmap/ic_launcher" />
  42. </LinearLayout>
  43.  
  44. <Button
  45. android:id="@+id/btnDelete"
  46. android:layout_width="match_parent"
  47. android:layout_height="wrap_content"
  48. android:text="Delete" />
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement