Advertisement
Guest User

Untitled

a guest
Feb 22nd, 2017
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.24 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="wrap_content">
  5.  
  6. <android.support.v7.widget.CardView
  7. android:layout_width="match_parent"
  8. android:layout_height="wrap_content">
  9.  
  10. <LinearLayout
  11. android:padding="@dimen/activity_horizontal_margin"
  12. android:orientation="vertical"
  13. android:layout_width="match_parent"
  14. android:layout_height="match_parent" >
  15.  
  16. <com.android.volley.toolbox.NetworkImageView
  17. android:layout_width="wrap_content"
  18. android:layout_height="wrap_content"
  19. android:padding="0dp"
  20. android:id="@+id/imageViewHero" />
  21.  
  22. <TableLayout
  23. android:layout_width="match_parent"
  24. android:layout_height="wrap_content">
  25.  
  26. <TableRow>
  27. <TextView
  28. android:text="Name"
  29. android:paddingRight="10dp"
  30. android:layout_width="wrap_content"
  31. android:layout_height="wrap_content"
  32. />
  33.  
  34. <TextView
  35. android:id="@+id/textViewName"
  36. android:textStyle="bold"
  37. android:layout_width="wrap_content"
  38. android:layout_height="wrap_content"
  39. />
  40.  
  41. </TableRow>
  42.  
  43. <TableRow>
  44. <TextView
  45. android:text="Publisher"
  46. android:paddingRight="10dp"
  47. android:layout_width="wrap_content"
  48. android:layout_height="wrap_content"
  49. />
  50.  
  51. <TextView
  52. android:id="@+id/textViewPublisher"
  53. android:textStyle="bold"
  54. android:layout_width="wrap_content"
  55. android:layout_height="wrap_content"
  56. />
  57.  
  58. </TableRow>
  59.  
  60. </TableLayout>
  61. </LinearLayout>
  62. </android.support.v7.widget.CardView>
  63.  
  64. </RelativeLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement