Advertisement
Guest User

render error 1

a guest
Mar 19th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.52 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:app="http://schemas.android.com/apk/res-auto"
  4. xmlns:tools="http://schemas.android.com/tools"
  5. android:layout_width="match_parent"
  6. android:layout_height="match_parent"
  7. tools:context="com.example.poging3.MainActivity">
  8.  
  9. <ImageView
  10. android:id="@+id/imageView2"
  11. android:layout_width="wrap_content"
  12. android:layout_height="wrap_content"
  13. android:contentDescription="@string/crypto_bg"
  14. android:scaleType="fitXY"
  15. app:layout_constraintBottom_toBottomOf="parent"
  16. app:layout_constraintHorizontal_bias="1.0"
  17. app:layout_constraintLeft_toLeftOf="parent"
  18. app:layout_constraintRight_toRightOf="parent"
  19. app:layout_constraintTop_toTopOf="parent"
  20. app:layout_constraintVertical_bias="0.0"
  21. app:srcCompat="@drawable/bg1" />
  22.  
  23. <ImageButton
  24. android:id="@+id/imageButton2"
  25. android:layout_width="100dp"
  26. android:layout_height="100dp"
  27. android:layout_marginBottom="32dp"
  28. android:layout_marginStart="32dp"
  29. android:contentDescription="@string/channel_pic"
  30. android:onClick="goToUrl"
  31. android:scaleType="fitCenter"
  32. android:tint="@drawable/tglogo"
  33. app:layout_constraintBottom_toBottomOf="parent"
  34. app:layout_constraintLeft_toLeftOf="parent"
  35. app:srcCompat="@drawable/tglogo" />
  36.  
  37. <TextView
  38. android:id="@+id/textView"
  39. android:layout_width="183dp"
  40. android:layout_height="72dp"
  41. android:layout_marginBottom="32dp"
  42. android:layout_marginEnd="32dp"
  43. android:text="@string/url_pic_msg"
  44. android:textAppearance="@style/TextAppearance.AppCompat.Caption"
  45. android:textColor="@android:color/white"
  46. android:textSize="16sp"
  47. app:layout_constraintBottom_toBottomOf="parent"
  48. app:layout_constraintEnd_toEndOf="parent" />
  49.  
  50. <ImageView
  51. android:id="@+id/imageView4"
  52. android:layout_width="350dp"
  53. android:layout_height="155dp"
  54. android:layout_marginStart="16dp"
  55. android:layout_marginTop="16dp"
  56. android:contentDescription="@string/swing_picture"
  57. android:scaleType="fitXY"
  58. app:layout_constraintLeft_toLeftOf="parent"
  59. app:layout_constraintTop_toTopOf="parent"
  60. app:srcCompat="@drawable/btctrend" />
  61.  
  62. </android.support.constraint.ConstraintLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement