Advertisement
Raditya48

help.xml

Jan 17th, 2019
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.98 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:app="http://schemas.android.com/apk/res-auto"
  4. xmlns:tools="http://schemas.android.com/tools"
  5. android:layout_width="match_parent"
  6. android:layout_height="match_parent"
  7. tools:context="com.qldejozz.HomeHelp.HelpActivity"
  8. android:layout_above="@+id/bottonNavJobseeker"
  9. android:orientation="vertical">
  10.  
  11. <RelativeLayout
  12. android:id="@+id/rl_content_help"
  13. android:layout_width="match_parent"
  14. android:layout_height="match_parent"
  15. android:visibility="gone">
  16.  
  17. <include layout="@layout/content_help"/>
  18.  
  19. </RelativeLayout>
  20.  
  21. <RelativeLayout
  22. android:id="@+id/rl_content_menu"
  23. android:layout_width="match_parent"
  24. android:layout_height="match_parent"
  25. android:visibility="gone">
  26.  
  27. <include layout="@layout/content_menu"/>
  28.  
  29. </RelativeLayout>
  30.  
  31. <RelativeLayout
  32. android:id="@+id/rl_content_keranjang"
  33. android:layout_width="match_parent"
  34. android:layout_height="match_parent"
  35. android:visibility="gone">
  36.  
  37. <include layout="@layout/content_keranjang"/>
  38.  
  39. </RelativeLayout>
  40.  
  41. <RelativeLayout
  42. android:id="@+id/rl_content_akun"
  43. android:layout_width="match_parent"
  44. android:layout_height="match_parent"
  45. android:visibility="gone">
  46.  
  47. <include layout="@layout/content_akun"/>
  48.  
  49. </RelativeLayout>
  50.  
  51. <android.support.design.widget.AppBarLayout
  52. android:layout_width="match_parent"
  53. android:layout_height="wrap_content"
  54. android:theme="@style/AppTheme.AppBarOverlay">
  55.  
  56. <android.support.v7.widget.Toolbar
  57. android:id="@+id/toolbar"
  58. android:layout_width="match_parent"
  59. android:layout_height="?attr/actionBarSize"
  60. android:background="@color/colorPrimary"
  61. app:title="Help"
  62. tools:ignore="HardcodedText"
  63. app:popupTheme="@style/AppTheme.PopupOverlay">
  64.  
  65. </android.support.v7.widget.Toolbar>
  66.  
  67. </android.support.design.widget.AppBarLayout>
  68.  
  69. <ScrollView
  70. android:layout_width="match_parent"
  71. android:layout_height="match_parent"
  72. >
  73.  
  74.  
  75. <RelativeLayout
  76. android:id="@+id/relative_home"
  77. android:layout_width="match_parent"
  78. android:layout_height="match_parent"
  79. >
  80.  
  81. <include layout="@layout/content_help"/>
  82.  
  83. </RelativeLayout>
  84. </ScrollView>
  85.  
  86. <android.support.design.widget.BottomNavigationView
  87. android:id="@+id/bottonNavJobseeker"
  88. android:layout_width="match_parent"
  89. android:layout_height="wrap_content"
  90. android:layout_alignParentBottom="true"
  91. app:labelVisibilityMode="labeled"
  92. android:layout_marginBottom="0dp"
  93. app:menu="@menu/bottomnavigation_jobseeker" />
  94.  
  95. </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement