TakashiYamamot

Untitled

Jan 29th, 2020
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.11 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:app="http://schemas.android.com/apk/res-auto"
  4. android:orientation="vertical"
  5. android:layout_width="match_parent"
  6. android:layout_height="match_parent"
  7. >
  8.  
  9. <ImageView
  10. android:onClick="Click"
  11. android:layout_margin="5dp"
  12. android:layout_width="match_parent"
  13. android:layout_height="wrap_content"
  14. app:srcCompat="@mipmap/ic_launcher"
  15. android:id="@+id/imageView" />
  16.  
  17. <TextView
  18. android:text="Нет название"
  19. android:layout_width="wrap_content"
  20. android:layout_height="wrap_content"
  21. android:id="@+id/textName"
  22. android:textSize="14sp"
  23. android:maxLength="40"
  24. android:textColor="@color/colorPrimary"
  25. android:layout_below="@+id/imageView"
  26. android:layout_alignParentLeft="true"
  27. android:layout_alignParentStart="true" />
  28.  
  29.  
  30.  
  31. </RelativeLayout>
Advertisement
Add Comment
Please, Sign In to add comment