Advertisement
PialKanti

booklistview

Oct 20th, 2016
198
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.84 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="match_parent"
  5. android:layout_marginTop="10dp"
  6. android:orientation="horizontal">
  7.  
  8. <ImageView
  9. android:id="@+id/BookImage"
  10. android:layout_width="110dp"
  11. android:layout_height="140dp"
  12. android:layout_marginLeft="10dp"
  13. android:background="@drawable/book" />
  14.  
  15. <LinearLayout
  16. android:layout_width="wrap_content"
  17. android:layout_height="wrap_content"
  18. android:layout_marginLeft="20dp"
  19. android:layout_marginTop="10dp"
  20. android:orientation="vertical">
  21.  
  22. <TextView
  23. android:id="@+id/BookTitle"
  24. android:layout_width="wrap_content"
  25. android:layout_height="wrap_content"
  26. android:layout_marginBottom="10dp"
  27. android:text="Book name"
  28. android:textSize="18sp" />
  29.  
  30. <TextView
  31. android:id="@+id/Call_no"
  32. android:layout_width="wrap_content"
  33. android:layout_height="wrap_content"
  34. android:layout_marginBottom="10dp"
  35. android:text="Call no"
  36. android:textSize="16sp" />
  37.  
  38. <TextView
  39. android:id="@+id/Due_Date"
  40. android:layout_width="wrap_content"
  41. android:layout_height="wrap_content"
  42. android:layout_marginBottom="10dp"
  43. android:text="Due"
  44. android:textSize="16sp" />
  45.  
  46. <TextView
  47. android:id="@+id/Remaining_renewal"
  48. android:layout_width="wrap_content"
  49. android:layout_height="wrap_content"
  50. android:text="5 of 5 renewals remaining"
  51. android:textSize="16sp" />
  52. </LinearLayout>
  53. </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement