Advertisement
elsemTim

Untitled

Jul 23rd, 2018
212
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 9.93 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3.    android:layout_width="match_parent"
  4.    android:layout_height="match_parent">
  5.  
  6.     <include
  7.        android:id="@+id/partial_toolbar"
  8.        layout="@layout/partial_toolbar" />
  9.  
  10.     <LinearLayout
  11.        android:id="@+id/linearLayout_happ_settings_happ_time"
  12.        android:layout_width="wrap_content"
  13.        android:layout_height="wrap_content"
  14.        android:layout_below="@id/partial_toolbar"
  15.        android:layout_marginTop="16dp"
  16.        android:layout_marginStart="16dp"
  17.        android:layout_marginEnd="16dp"
  18.        android:orientation="horizontal">
  19.  
  20.         <TextView
  21.            android:layout_width="wrap_content"
  22.            android:layout_height="wrap_content"
  23.            android:text="Happ Time: "
  24.            android:textSize="16sp"
  25.            android:textColor="@color/globalPurple"
  26.            android:textStyle="bold" />
  27.  
  28.         <TextView
  29.            android:id="@+id/textView_happ_settings_happ_time_title"
  30.            android:layout_width="wrap_content"
  31.            android:layout_height="wrap_content"
  32.            android:text="Now"
  33.            android:textColor="@color/colorBlack" />
  34.     </LinearLayout>
  35.  
  36.     <LinearLayout
  37.        android:id="@+id/relative_mcs_happ_state_location"
  38.        android:layout_width="match_parent"
  39.        android:layout_height="wrap_content"
  40.        android:layout_below="@id/linearLayout_happ_settings_happ_time"
  41.        android:layout_centerHorizontal="true"
  42.        android:layout_centerVertical="true"
  43.        android:layout_marginEnd="56dp"
  44.        android:layout_marginStart="56dp"
  45.        android:gravity="center"
  46.        android:orientation="horizontal">
  47.  
  48.         <RelativeLayout
  49.            android:id="@+id/relative_thread_happ_state_location_share"
  50.            android:layout_width="wrap_content"
  51.            android:layout_height="wrap_content"
  52.            android:layout_weight="1">
  53.  
  54.             <TextView
  55.                android:id="@+id/textView_mcs_happ_settings_time_now"
  56.                android:layout_width="wrap_content"
  57.                android:layout_height="wrap_content"
  58.                android:layout_centerHorizontal="true"
  59.                android:text="Now"
  60.                android:textColor="@color/globalPurple" />
  61.  
  62.             <ImageView
  63.                android:layout_width="wrap_content"
  64.                android:layout_height="wrap_content"
  65.                android:layout_below="@id/textView_mcs_happ_settings_time_now"
  66.                android:layout_centerInParent="true"
  67.                android:layout_marginTop="2dp"
  68.                android:background="@drawable/icon_chat_date_now" />
  69.         </RelativeLayout>
  70.  
  71.         <RelativeLayout
  72.            android:id="@+id/relative_thread_happ_state_location_swarm"
  73.            android:layout_width="wrap_content"
  74.            android:layout_height="wrap_content"
  75.            android:layout_weight="1">
  76.  
  77.             <TextView
  78.                android:id="@+id/textView_mcs_happ_settings_time_set"
  79.                android:layout_width="wrap_content"
  80.                android:layout_height="wrap_content"
  81.                android:layout_centerHorizontal="true"
  82.                android:text="Set Time"
  83.                android:textColor="@color/globalPurple" />
  84.  
  85.             <ImageView
  86.                android:layout_width="wrap_content"
  87.                android:layout_height="wrap_content"
  88.                android:layout_below="@id/textView_mcs_happ_settings_time_set"
  89.                android:layout_centerInParent="true"
  90.                android:layout_marginTop="2dp"
  91.                android:background="@drawable/icon_chat_date_now" />
  92.         </RelativeLayout>
  93.  
  94.         <RelativeLayout
  95.            android:id="@+id/relative_mcs_happ_state_location_hide"
  96.            android:layout_width="wrap_content"
  97.            android:layout_height="wrap_content"
  98.            android:layout_weight="1">
  99.  
  100.             <TextView
  101.                android:id="@+id/textView_mcs_happ_state_location_hide"
  102.                android:layout_width="wrap_content"
  103.                android:layout_height="wrap_content"
  104.                android:layout_centerHorizontal="true"
  105.                android:gravity="center"
  106.                android:text="Allow\n suggestions?"
  107.                android:textColor="@color/globalPurple" />
  108.  
  109.             <Switch
  110.                android:id="@+id/switch_happ_settings_happ_time_allow"
  111.                android:layout_marginTop="8dp"
  112.                android:layout_marginBottom="16dp"
  113.                android:layout_width="wrap_content"
  114.                android:layout_centerHorizontal="true"
  115.                android:layout_height="wrap_content"
  116.                android:layout_below="@+id/textView_mcs_happ_state_location_hide"/>
  117.         </RelativeLayout>
  118.  
  119.     </LinearLayout>
  120.  
  121.     <View
  122.        android:id="@+id/view"
  123.        android:layout_width="fill_parent"
  124.        android:layout_height="1dp"
  125.        android:layout_marginTop="8dp"
  126.        android:layout_marginStart="16dp"
  127.        android:layout_marginEnd="16dp"
  128.        android:layout_below="@id/relative_mcs_happ_state_location"
  129.        android:background="@color/colorGrayLight" />
  130.  
  131.     <LinearLayout
  132.        android:id="@+id/linearLayout_happ_settings_happ_location"
  133.        android:layout_width="wrap_content"
  134.        android:layout_height="wrap_content"
  135.        android:layout_below="@id/view"
  136.        android:layout_marginTop="16dp"
  137.        android:layout_marginStart="16dp"
  138.        android:layout_marginEnd="16dp"
  139.        android:orientation="horizontal">
  140.  
  141.         <TextView
  142.            android:layout_width="wrap_content"
  143.            android:layout_height="wrap_content"
  144.            android:text="Meeting location: "
  145.            android:textSize="16sp"
  146.            android:textColor="@color/globalPurple"
  147.            android:textStyle="bold" />
  148.  
  149.         <TextView
  150.            android:id="@+id/textView_happ_settings_happ_location_title"
  151.            android:layout_width="wrap_content"
  152.            android:layout_height="wrap_content"
  153.            android:text="@string/figayou_s_pick"
  154.            android:textColor="@color/colorBlack" />
  155.     </LinearLayout>
  156.  
  157.     <LinearLayout
  158.        android:id="@+id/linear_happ_settings_happ_location"
  159.        android:layout_width="match_parent"
  160.        android:layout_height="wrap_content"
  161.        android:layout_below="@id/linearLayout_happ_settings_happ_location"
  162.        android:layout_centerHorizontal="true"
  163.        android:layout_centerVertical="true"
  164.        android:layout_marginEnd="56dp"
  165.        android:layout_marginStart="56dp"
  166.        android:gravity="center"
  167.        android:orientation="horizontal">
  168.  
  169.         <RelativeLayout
  170.            android:id="@+id/relative_happ_settings_happ_location_figayou"
  171.            android:layout_width="wrap_content"
  172.            android:layout_height="wrap_content"
  173.            android:layout_weight="1">
  174.  
  175.             <TextView
  176.                android:id="@+id/textView_happ_settings_happ_location_figayou"
  177.                android:layout_width="wrap_content"
  178.                android:layout_height="wrap_content"
  179.                android:layout_centerHorizontal="true"
  180.                android:gravity="center"
  181.                android:text="Figayou's\n Pick"
  182.                android:textColor="@color/globalPurple" />
  183.  
  184.             <ImageView
  185.                android:layout_width="wrap_content"
  186.                android:layout_height="wrap_content"
  187.                android:layout_below="@id/textView_happ_settings_happ_location_figayou"
  188.                android:layout_centerInParent="true"
  189.                android:layout_marginTop="2dp"
  190.                android:background="@drawable/icon_chat_happ" />
  191.         </RelativeLayout>
  192.  
  193.         <RelativeLayout
  194.            android:id="@+id/relative_happ_settings_happ_location_pick"
  195.            android:layout_width="wrap_content"
  196.            android:layout_height="wrap_content"
  197.            android:layout_weight="1">
  198.  
  199.             <TextView
  200.                android:id="@+id/textView_happ_settings_happ_location_pick"
  201.                android:layout_width="wrap_content"
  202.                android:layout_height="wrap_content"
  203.                android:layout_centerHorizontal="true"
  204.                android:gravity="center"
  205.                android:text="Pick\n Location"
  206.                android:textColor="@color/globalPurple" />
  207.  
  208.             <ImageView
  209.                android:layout_width="wrap_content"
  210.                android:layout_height="wrap_content"
  211.                android:layout_below="@id/textView_happ_settings_happ_location_pick"
  212.                android:layout_centerInParent="true"
  213.                android:layout_marginTop="2dp"
  214.                android:background="@drawable/icon_chat_location" />
  215.         </RelativeLayout>
  216.  
  217.         <RelativeLayout
  218.            android:id="@+id/relative_happ_settings_happ_location_allow"
  219.            android:layout_width="wrap_content"
  220.            android:layout_height="wrap_content"
  221.            android:layout_weight="1">
  222.  
  223.             <TextView
  224.                android:id="@+id/textView_happ_settings_happ_location_allow"
  225.                android:layout_width="wrap_content"
  226.                android:layout_height="wrap_content"
  227.                android:layout_centerHorizontal="true"
  228.                android:gravity="center"
  229.                android:text="Allow\n suggestions?"
  230.                android:textColor="@color/globalPurple" />
  231.  
  232.             <Switch
  233.                android:id="@+id/switch_happ_settings_happ_location_allow"
  234.                android:layout_marginTop="8dp"
  235.                android:layout_marginBottom="8dp"
  236.                android:layout_width="wrap_content"
  237.                android:layout_centerHorizontal="true"
  238.                android:layout_height="wrap_content"
  239.                android:layout_below="@+id/textView_happ_settings_happ_location_allow"/>
  240.         </RelativeLayout>
  241.  
  242.     </LinearLayout>
  243.  
  244. </RelativeLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement