Advertisement
Guest User

Untitled

a guest
Dec 16th, 2015
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.21 KB | None | 0 0
  1. <LinearLayout
  2. android:layout_width="match_parent"
  3. android:layout_height="wrap_content"
  4. android:orientation="vertical">
  5.  
  6. <LinearLayout
  7. android:layout_width="match_parent"
  8. android:layout_height="wrap_content"
  9. android:layout_marginBottom="@dimen/hotel_traveler_table_margin"
  10. android:orientation="horizontal">
  11.  
  12. <ImageButton
  13. android:id="@+id/adults_minus"
  14. style="@style/HotelTravelerIcon.Minus" />
  15.  
  16. <com.expedia.bookings.widget.TextView
  17. android:id="@+id/adult"
  18. android:layout_width="0dp"
  19. android:layout_height="@dimen/hotel_traveler_plus_minus_size"
  20. android:layout_weight="5"
  21. android:gravity="center"
  22. android:textColor="@color/cars_actionbar_text_color" />
  23.  
  24. <ImageButton
  25. android:id="@+id/adults_plus"
  26. style="@style/HotelTravelerIcon.Plus" />
  27. </LinearLayout>
  28.  
  29. <LinearLayout
  30. android:layout_width="match_parent"
  31. android:layout_height="wrap_content"
  32. android:orientation="horizontal">
  33.  
  34. <ImageButton
  35. android:id="@+id/children_minus"
  36. style="@style/HotelTravelerIcon.Minus" />
  37.  
  38. <LinearLayout
  39. android:id="@+id/children_container"
  40. android:layout_width="0dp"
  41. android:layout_height="@dimen/hotel_traveler_plus_minus_size"
  42. android:layout_weight="5"
  43. android:gravity="center"
  44. android:orientation="vertical">
  45.  
  46. <com.expedia.bookings.widget.TextView
  47. android:id="@+id/children"
  48. android:layout_width="wrap_content"
  49. android:layout_height="wrap_content"
  50. android:textColor="@color/cars_actionbar_text_color" />
  51.  
  52. <com.expedia.bookings.widget.TextView
  53. android:id="@+id/children_age_label"
  54. android:layout_width="wrap_content"
  55. android:layout_height="wrap_content"
  56. android:text="@string/children_age_label"
  57. android:textSize="12sp"
  58. android:textColor="@color/hotel_cell_secondary_text_color" />
  59. </LinearLayout>
  60.  
  61. <ImageButton
  62. android:id="@+id/children_plus"
  63. style="@style/HotelTravelerIcon.Plus" />
  64. </LinearLayout>
  65. </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement