Guest User

Untitled

a guest
Oct 21st, 2017
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.33 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <selector xmlns:android="http://schemas.android.com/apk/res/android">
  3. <shape
  4. android:shape="rectangle" >
  5.  
  6. <solid android:color="#FFF" />
  7.  
  8. <corners android:radius="20dp" />
  9.  
  10. <stroke
  11. android:width="5dip"
  12. android:color="#A5D" />
  13.  
  14. </shape>
  15. </selector>
  16.  
  17. <TextView
  18. android:id="@+id/textView1"
  19. android:layout_width="104dp"
  20. android:layout_height="58dp"
  21. android:layout_margin="30dp"
  22. android:background="@drawable/rounded"
  23. android:padding="30dp"
  24. android:text="Кошка, которая гуляла сама по себе"
  25. android:layout_marginLeft="8dp"
  26. app:layout_constraintLeft_toLeftOf="parent"
  27. android:layout_marginRight="8dp"
  28. app:layout_constraintRight_toRightOf="parent"
  29. android:layout_marginBottom="73dp"
  30. app:layout_constraintBottom_toTopOf="@+id/button2"
  31. app:layout_constraintHorizontal_bias="0.556"
  32. android:layout_marginTop="8dp"
  33. app:layout_constraintTop_toBottomOf="@+id/Opisanietxt" />
  34.  
  35. <?xml version="1.0" encoding="utf-8"?>
  36. <shape xmlns:android="http://schemas.android.com/apk/res/android"
  37. android:shape="rectangle">
  38. <solid android:color="#FFF" />
  39. <corners android:radius="20dp" />
  40. <stroke
  41. android:width="5dp"
  42. android:color="#A5D" />
  43. </shape>
Add Comment
Please, Sign In to add comment