Advertisement
Guest User

Untitled

a guest
Feb 18th, 2016
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 5.09 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="match_parent"
  5.     android:orientation="vertical">
  6.  
  7.     <LinearLayout
  8.         android:layout_width="match_parent"
  9.         android:layout_height="wrap_content"
  10.         android:orientation="horizontal">
  11.  
  12.         <TextView
  13.             android:id="@+id/goes"
  14.             android:layout_width="0dp"
  15.             android:layout_height="wrap_content"
  16.             android:layout_marginRight="10dp"
  17.             android:layout_weight="6"
  18.             android:padding="10dp"
  19.             android:text="@string/register_board_goes_up"
  20.             android:textColor="@android:color/black"
  21.             android:textSize="15dp"
  22.             android:textStyle="bold" />
  23.  
  24.         <LinearLayout
  25.             android:layout_width="0dp"
  26.             android:layout_height="wrap_content"
  27.             android:layout_margin="5dp"
  28.             android:layout_weight="5"
  29.             android:gravity="center_vertical"
  30.             android:orientation="horizontal"
  31.             android:padding="5dp">
  32.  
  33.             <TextView
  34.                 android:id="@+id/goes_all_textView"
  35.                 android:layout_width="0dp"
  36.                 android:layout_height="wrap_content"
  37.                 android:layout_weight="1"
  38.                 android:background="@drawable/selector_button_absence"
  39.                 android:gravity="center"
  40.                 android:paddingBottom="5dp"
  41.                 android:paddingLeft="15dp"
  42.                 android:paddingRight="15dp"
  43.                 android:textSize="12dp"
  44.                 android:paddingTop="5dp"
  45.                 android:text="@string/register_switch_all"
  46.                 android:textColor="@color/black" />
  47.             <TextView
  48.                 android:id="@+id/goes_none_textView"
  49.                 android:layout_width="0dp"
  50.                 android:layout_height="wrap_content"
  51.                 android:layout_weight="1"
  52.                 android:background="@drawable/selector_button_late"
  53.                 android:gravity="center"
  54.                 android:paddingBottom="5dp"
  55.                 android:textSize="12dp"
  56.                 android:paddingLeft="15dp"
  57.                 android:paddingRight="15dp"
  58.                 android:paddingTop="5dp"
  59.                 android:text="@string/register_switch_none"
  60.                 android:textColor="@color/black" />
  61.  
  62.         </LinearLayout>
  63.  
  64.     </LinearLayout>
  65.  
  66.     <LinearLayout
  67.         android:layout_width="match_parent"
  68.         android:layout_height="wrap_content"
  69.         android:orientation="horizontal">
  70.  
  71.         <TextView
  72.             android:layout_width="0dp"
  73.             android:layout_height="wrap_content"
  74.             android:layout_marginRight="10dp"
  75.             android:layout_weight="6"
  76.             android:padding="10dp"
  77.             android:text="@string/register_board_not_up"
  78.             android:textColor="@android:color/black"
  79.             android:textSize="15dp"
  80.             android:textStyle="bold" />
  81.  
  82.         <LinearLayout
  83.             android:layout_width="0dp"
  84.             android:layout_height="wrap_content"
  85.             android:layout_margin="5dp"
  86.             android:layout_weight="5"
  87.             android:gravity="center_vertical"
  88.             android:orientation="horizontal"
  89.             android:padding="5dp">
  90.  
  91.             <TextView
  92.                 android:id="@+id/doesnt_go_all_textView"
  93.                 android:layout_width="0dp"
  94.                 android:layout_height="wrap_content"
  95.                 android:layout_weight="1"
  96.                 android:background="@drawable/selector_button_absence"
  97.                 android:gravity="center"
  98.                 android:paddingBottom="5dp"
  99.                 android:paddingLeft="15dp"
  100.                 android:paddingRight="15dp"
  101.                 android:textSize="12dp"
  102.                 android:paddingTop="5dp"
  103.                 android:text="@string/register_switch_all"
  104.                 android:textColor="@color/black" />
  105.             <TextView
  106.                 android:id="@+id/doesnt_go_none_textView"
  107.                 android:layout_width="0dp"
  108.                 android:layout_height="wrap_content"
  109.                 android:layout_weight="1"
  110.                 android:background="@drawable/selector_button_late"
  111.                 android:gravity="center"
  112.                 android:paddingBottom="5dp"
  113.                 android:paddingLeft="15dp"
  114.                 android:textSize="12dp"
  115.                 android:paddingRight="15dp"
  116.                 android:paddingTop="5dp"
  117.                 android:text="@string/register_switch_none"
  118.                 android:textColor="@color/black" />
  119.  
  120.         </LinearLayout>
  121.  
  122.     </LinearLayout>
  123.  
  124.  
  125.     <ListView
  126.         android:id="@+id/list_board"
  127.         android:layout_width="match_parent"
  128.         android:layout_height="match_parent"
  129.         android:layout_marginTop="15dp"
  130.         android:divider="@null"
  131.         android:dividerHeight="0dp"
  132.         android:listSelector="@android:color/transparent"
  133.         android:overScrollMode="never" />
  134. </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement