Advertisement
Mechele

Untitled

Feb 10th, 2016
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.69 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:orientation="vertical"
  4. xmlns:tools="http://schemas.android.com/tools"
  5. android:layout_width="match_parent"
  6. android:layout_height="match_parent"
  7. android:background="#ffffff">
  8. <LinearLayout android:id="@+id/headerLayout"
  9. android:layout_width="match_parent"
  10. android:layout_height="58dp"
  11. android:layout_alignParentTop="true"
  12. android:layout_alignParentLeft="true"
  13. android:background="#313131"
  14. android:weightSum="2"
  15. android:orientation="horizontal">
  16.  
  17. <fragment android:name="com.taxipixi.incarapp.fragments.HeaderFragment"
  18. android:id="@+id/header"
  19. android:layout_weight="1"
  20. android:layout_width="match_parent"
  21. android:layout_height="match_parent"
  22. tools:layout="@layout/header_widget_layout" />
  23. </LinearLayout>
  24.  
  25. <TextView
  26. android:id="@+id/count_down_text"
  27. android:padding="16dp"
  28. android:textSize="24sp"
  29. tools:text="Accept in 25 seconds"
  30. android:layout_width="match_parent"
  31. android:layout_height="wrap_content"
  32. android:visibility="gone"/>
  33.  
  34. <com.taxipixi.incarapp.widgets.JourneyInfoWidget_M
  35. android:id="@+id/journey_info_widget_m"
  36. android:layout_width="match_parent"
  37. android:layout_weight="1"
  38. android:layout_height="0dp" />
  39.  
  40. <FrameLayout
  41. android:layout_width="fill_parent"
  42. android:layout_height="77dp">
  43.  
  44. <LinearLayout
  45. android:id="@+id/btns_layout"
  46. android:orientation="horizontal"
  47. android:layout_width="match_parent"
  48. android:layout_height="55dp"
  49. android:layout_gravity="bottom">
  50.  
  51. <Button
  52. android:id="@+id/decline"
  53. android:layout_width="0dp"
  54. android:layout_weight="1"
  55. android:layout_height="match_parent"
  56. android:gravity="center"
  57. tools:text="@string/decline"
  58. tools:background="@drawable/accept_job_hindi"
  59. android:textColor="@android:color/white"
  60. android:background="@drawable/negative_button_background"
  61. android:padding="7dp"
  62. android:textAppearance="?android:attr/textAppearanceMedium"
  63. android:textStyle="bold"
  64. android:textSize="24sp"/>
  65.  
  66. <Button
  67. android:id="@+id/accept"
  68. android:layout_width="0dp"
  69. android:layout_height="match_parent"
  70. android:layout_weight="1"
  71. android:gravity="center"
  72. tools:text="@string/btn_accept"
  73. tools:background="@drawable/accept_job_hindi"
  74. android:textColor="@android:color/white"
  75. android:background="@drawable/button_forward_background"
  76. android:padding="7dp"
  77. android:textAppearance="?android:attr/textAppearanceMedium"
  78. android:textStyle="bold"
  79. android:textSize="24sp"/>
  80. </LinearLayout>
  81.  
  82. <TextView
  83. android:layout_width="77dp"
  84. android:layout_height="77dp"
  85. android:textAppearance="?android:attr/textAppearanceLarge"
  86. android:text="Time"
  87. android:id="@+id/timer"
  88. android:background="@drawable/confiramtion_activity_round_textview"
  89. android:layout_gravity="center"
  90. android:gravity="center"
  91. android:visibility="gone"/>
  92. </FrameLayout>
  93.  
  94. </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement