Advertisement
Guest User

ShopActivity

a guest
Apr 24th, 2018
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.95 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="wrap_content"
  5. android:orientation="vertical"
  6. android:background="@drawable/cactus_background">
  7.  
  8. <ImageView
  9. android:id="@+id/imgItem"
  10. android:layout_width="113dp"
  11. android:layout_height="98dp"
  12. android:background="@drawable/shop"
  13. android:contentDescription="@string/shop"/>
  14.  
  15. <TextView
  16. android:id="@+id/tvName"
  17. android:layout_width="273dp"
  18. android:layout_height="wrap_content"
  19. android:text="@string/Upgrade_1_Name"
  20. android:textSize="28sp" />
  21.  
  22. <TextView
  23. android:id="@+id/tvDescription"
  24. android:layout_width="273dp"
  25. android:layout_height="64dp"
  26. android:text="@string/Upgrade_1_Description"
  27. android:textSize="20sp" />
  28.  
  29.  
  30. </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement