Advertisement
minafaw3

disease_row

Oct 25th, 2015
219
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.62 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="horizontal" >
  6.  
  7. <ImageView
  8. android:id="@+id/imageView1"
  9. android:layout_width="wrap_content"
  10. android:layout_height="wrap_content"
  11. android:layout_gravity="center"
  12. android:visibility="gone"
  13. android:src="@drawable/ill_3" />
  14.  
  15. <TextView
  16. android:id="@+id/disases_name"
  17. android:layout_width="match_parent"
  18. android:layout_height="wrap_content"
  19. android:gravity="center"
  20. android:layout_weight="1"
  21. android:padding="10dp"
  22. android:layout_margin="5dp"
  23. android:text="TextView" />
  24.  
  25. <FrameLayout
  26. android:id="@+id/frameLayout1"
  27. android:layout_width="wrap_content"
  28. android:layout_height="wrap_content"
  29. android:layout_margin="5dp" >
  30.  
  31.  
  32. <ProgressBar
  33. android:id="@+id/diseases_progressBar"
  34. style="?android:attr/progressBarStyleSmall"
  35. android:layout_width="wrap_content"
  36. android:layout_height="wrap_content"
  37. android:layout_gravity="center"
  38. android:visibility="gone"/>
  39.  
  40.  
  41. <com.android.volley.toolbox.NetworkImageView
  42. android:id="@+id/diseases_img"
  43. android:layout_width="60dp"
  44. android:layout_height="60dp"
  45. android:src="@drawable/ic_launcher"
  46. android:layout_gravity="right"/>
  47.  
  48.  
  49. </FrameLayout>
  50.  
  51. </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement