Advertisement
Guest User

Untitled

a guest
Jun 8th, 2015
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 16.82 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:background="@color/blue_light" >
  11.  
  12.         <LinearLayout
  13.            android:id="@+id/sign_up_tab"
  14.            android:layout_width="wrap_content"
  15.            android:layout_height="match_parent"
  16.            android:orientation="vertical" >
  17.  
  18.             <hu.illion.kwindoo.view.text.RobotoTextView
  19.                android:id="@+id/signUpTv"
  20.                android:layout_width="wrap_content"
  21.                android:layout_height="wrap_content"
  22.                android:layout_marginBottom="8dp"
  23.                android:layout_marginLeft="32dp"
  24.                android:layout_marginRight="32dp"
  25.                android:layout_marginTop="12dp"
  26.                android:tag="medium"
  27.                android:text="@string/sign_up_C"
  28.                android:textAppearance="?android:attr/textAppearanceMedium"
  29.                android:textColor="@color/white"
  30.                android:textSize="16sp" />
  31.  
  32.             <FrameLayout
  33.                android:id="@+id/sign_up_indicator"
  34.                android:layout_width="match_parent"
  35.                android:layout_height="6dp"
  36.                android:background="@color/blue_light2" >
  37.             </FrameLayout>
  38.         </LinearLayout>
  39.  
  40.         <FrameLayout
  41.            android:layout_width="wrap_content"
  42.            android:layout_height="match_parent"
  43.            android:layout_weight="1" >
  44.         </FrameLayout>
  45.  
  46.         <LinearLayout
  47.            android:id="@+id/log_in_tab"
  48.            android:layout_width="120dp"
  49.            android:layout_height="match_parent"
  50.            android:orientation="vertical" >
  51.  
  52.             <hu.illion.kwindoo.view.text.RobotoTextView
  53.                android:id="@+id/logInTv"
  54.                android:layout_width="wrap_content"
  55.                android:layout_height="wrap_content"
  56.                android:layout_gravity="right"
  57.                android:layout_marginBottom="8dp"
  58.                android:layout_marginLeft="32dp"
  59.                android:layout_marginRight="32dp"
  60.                android:layout_marginTop="12dp"
  61.                android:tag="medium"
  62.                android:text="@string/log_in_C"
  63.                android:textAppearance="?android:attr/textAppearanceMedium"
  64.                android:textColor="@color/blue_light_inactive"
  65.                android:textSize="16sp" />
  66.  
  67.             <FrameLayout
  68.                android:id="@+id/log_in_indicator"
  69.                android:layout_width="match_parent"
  70.                android:layout_height="6dp"
  71.                android:layout_gravity="right" >
  72.             </FrameLayout>
  73.         </LinearLayout>
  74.     </LinearLayout>
  75.  
  76.     <FrameLayout
  77.        android:layout_width="match_parent"
  78.        android:layout_height="match_parent" >
  79.  
  80.         <FrameLayout
  81.            android:id="@+id/login_view_login_cont"
  82.            android:layout_width="match_parent"
  83.            android:layout_height="match_parent"
  84.            android:visibility="invisible" >
  85.  
  86.             <LinearLayout
  87.                android:layout_width="match_parent"
  88.                android:layout_height="match_parent"
  89.                android:orientation="vertical" >
  90.  
  91.                 <FrameLayout
  92.                    android:layout_width="match_parent"
  93.                    android:layout_height="wrap_content" >
  94.  
  95.                     <EditText
  96.                        android:id="@+id/login_email_edit"
  97.                        android:layout_width="match_parent"
  98.                        android:layout_height="wrap_content"
  99.                        android:layout_marginLeft="16dp"
  100.                        android:layout_marginRight="8dp"
  101.                        android:background="@null"
  102.                        android:ems="10"
  103.                        android:hint="@string/email"
  104.                        android:inputType="textEmailAddress"
  105.                        android:paddingBottom="8dp"
  106.                        android:paddingTop="8dp" />
  107.  
  108.                     <View
  109.                        android:id="@+id/View05"
  110.                        android:layout_width="match_parent"
  111.                        android:layout_height="0.4dp"
  112.                        android:layout_gravity="bottom"
  113.                        android:layout_marginLeft="16dp"
  114.                        android:layout_marginRight="16dp"
  115.                        android:layout_marginTop="8dp"
  116.                        android:background="@color/gray" />
  117.                 </FrameLayout>
  118.  
  119.                 <FrameLayout
  120.                    android:layout_width="match_parent"
  121.                    android:layout_height="wrap_content" >
  122.  
  123.                     <EditText
  124.                        android:id="@+id/login_pass_edit"
  125.                        android:layout_width="match_parent"
  126.                        android:layout_height="wrap_content"
  127.                        android:layout_marginLeft="16dp"
  128.                        android:layout_marginRight="8dp"
  129.                        android:background="@null"
  130.                        android:ems="10"
  131.                        android:fontFamily="sans-serif"
  132.                        android:hint="@string/passsword"
  133.                        android:inputType="textPassword"
  134.                        android:paddingBottom="8dp"
  135.                        android:paddingTop="8dp" />
  136.  
  137.                     <View
  138.                        android:id="@+id/View04"
  139.                        android:layout_width="match_parent"
  140.                        android:layout_height="0.4dp"
  141.                        android:layout_gravity="bottom"
  142.                        android:layout_marginLeft="16dp"
  143.                        android:layout_marginRight="16dp"
  144.                        android:layout_marginTop="8dp"
  145.                        android:background="@color/gray" />
  146.                 </FrameLayout>
  147.  
  148.                 <FrameLayout
  149.                    android:layout_width="match_parent"
  150.                    android:layout_height="wrap_content"
  151.                    android:layout_weight="1" >
  152.                 </FrameLayout>
  153.  
  154.                 <hu.illion.kwindoo.view.text.RobotoTextView
  155.                    android:id="@+id/login_view_forgot_tv"
  156.                    android:layout_width="wrap_content"
  157.                    android:layout_height="wrap_content"
  158.                    android:layout_gravity="right|bottom"
  159.                    android:layout_marginBottom="16dp"
  160.                    android:layout_marginRight="16dp"
  161.                    android:tag="bold"
  162.                    android:text="@string/forget"
  163.                    android:textColor="@color/blue_light" />
  164.  
  165.                 <ImageView
  166.                    android:id="@+id/login_view_next_btn"
  167.                    android:layout_width="wrap_content"
  168.                    android:layout_height="wrap_content"
  169.                    android:layout_gravity="right"
  170.                    android:layout_marginBottom="16dp"
  171.                    android:layout_marginRight="16dp"
  172.                    android:src="@drawable/arrow1"
  173.                    android:visibility="invisible" />
  174.             </LinearLayout>
  175.         </FrameLayout>
  176.  
  177.         <FrameLayout
  178.            android:id="@+id/login_view_sign_cont"
  179.            android:layout_width="match_parent"
  180.            android:layout_height="match_parent"
  181.            android:visibility="visible" >
  182.  
  183.             <LinearLayout
  184.                android:layout_width="match_parent"
  185.                android:layout_height="match_parent"
  186.                android:orientation="vertical" >
  187.  
  188.                 <FrameLayout
  189.                    android:layout_width="match_parent"
  190.                    android:layout_height="wrap_content" >
  191.  
  192.                     <EditText
  193.                        android:id="@+id/sign_up_email_edit"
  194.                        android:layout_width="match_parent"
  195.                        android:layout_height="wrap_content"
  196.                        android:layout_marginLeft="16dp"
  197.                        android:layout_marginRight="8dp"
  198.                        android:background="@null"
  199.                        android:ems="10"
  200.                        android:hint="@string/email"
  201.                        android:inputType="textEmailAddress"
  202.                        android:paddingBottom="8dp"
  203.                        android:paddingTop="8dp" >
  204.  
  205.                         <requestFocus />
  206.                     </EditText>
  207.  
  208.                     <View
  209.                        android:id="@+id/new_content5"
  210.                        android:layout_width="match_parent"
  211.                        android:layout_height="0.4dp"
  212.                        android:layout_gravity="bottom"
  213.                        android:layout_marginLeft="16dp"
  214.                        android:layout_marginRight="16dp"
  215.                        android:layout_marginTop="8dp"
  216.                        android:background="@color/gray" />
  217.                 </FrameLayout>
  218.  
  219.                 <FrameLayout
  220.                    android:layout_width="match_parent"
  221.                    android:layout_height="wrap_content" >
  222.  
  223.                     <EditText
  224.                        android:id="@+id/sign_up_first_name_edit"
  225.                        android:layout_width="match_parent"
  226.                        android:layout_height="wrap_content"
  227.                        android:layout_marginLeft="16dp"
  228.                        android:layout_marginRight="8dp"
  229.                        android:layout_weight="1"
  230.                        android:background="@null"
  231.                        android:ems="10"
  232.                        android:hint="@string/firstname"
  233.                        android:inputType="textCapSentences"
  234.                        android:paddingBottom="8dp"
  235.                        android:paddingTop="8dp" />
  236.  
  237.                     <View
  238.                        android:id="@+id/new_content13"
  239.                        android:layout_width="match_parent"
  240.                        android:layout_height="0.4dp"
  241.                        android:layout_gravity="bottom"
  242.                        android:layout_marginLeft="16dp"
  243.                        android:layout_marginRight="16dp"
  244.                        android:layout_marginTop="8dp"
  245.                        android:background="@color/gray" />
  246.                 </FrameLayout>
  247.  
  248.                 <FrameLayout
  249.                    android:layout_width="match_parent"
  250.                    android:layout_height="wrap_content" >
  251.  
  252.                     <EditText
  253.                        android:id="@+id/sign_up_last_name_edit"
  254.                        android:layout_width="match_parent"
  255.                        android:layout_height="wrap_content"
  256.                        android:layout_marginLeft="16dp"
  257.                        android:layout_marginRight="8dp"
  258.                        android:layout_weight="1"
  259.                        android:background="@null"
  260.                        android:ems="10"
  261.                        android:hint="@string/lastname"
  262.                        android:inputType="textCapSentences"
  263.                        android:paddingBottom="8dp"
  264.                        android:paddingTop="8dp" />
  265.  
  266.                     <View
  267.                        android:id="@+id/View03"
  268.                        android:layout_width="match_parent"
  269.                        android:layout_height="0.4dp"
  270.                        android:layout_gravity="bottom"
  271.                        android:layout_marginLeft="16dp"
  272.                        android:layout_marginRight="16dp"
  273.                        android:layout_marginTop="8dp"
  274.                        android:background="@color/gray" />
  275.                 </FrameLayout>
  276.  
  277.                 <FrameLayout
  278.                    android:layout_width="match_parent"
  279.                    android:layout_height="wrap_content" >
  280.  
  281.                     <EditText
  282.                        android:id="@+id/sign_up_nickname_edit"
  283.                        android:layout_width="match_parent"
  284.                        android:layout_height="wrap_content"
  285.                        android:layout_marginLeft="16dp"
  286.                        android:layout_marginRight="8dp"
  287.                        android:background="@null"
  288.                        android:ems="10"
  289.                        android:hint="@string/nickname"
  290.                        android:inputType="textCapSentences"
  291.                        android:paddingBottom="8dp"
  292.                        android:paddingTop="8dp" />
  293.  
  294.                     <View
  295.                        android:id="@+id/View02"
  296.                        android:layout_width="match_parent"
  297.                        android:layout_height="0.4dp"
  298.                        android:layout_gravity="bottom"
  299.                        android:layout_marginLeft="16dp"
  300.                        android:layout_marginRight="16dp"
  301.                        android:layout_marginTop="8dp"
  302.                        android:background="@color/gray" />
  303.                 </FrameLayout>
  304.  
  305.                 <FrameLayout
  306.                    android:layout_width="match_parent"
  307.                    android:layout_height="wrap_content" >
  308.  
  309.                     <EditText
  310.                        android:id="@+id/sign_up_password_edit"
  311.                        android:layout_width="match_parent"
  312.                        android:layout_height="wrap_content"
  313.                        android:layout_marginLeft="16dp"
  314.                        android:layout_marginRight="8dp"
  315.                        android:layout_weight="1"
  316.                        android:background="@null"
  317.                        android:ems="10"
  318.                        android:fontFamily="sans-serif"
  319.                        android:inputType="textPassword"
  320.                        android:hint="@string/passsword"
  321.                        android:paddingBottom="8dp"
  322.                        android:paddingTop="8dp" />
  323.  
  324.                     <View
  325.                        android:id="@+id/new_content9"
  326.                        android:layout_width="match_parent"
  327.                        android:layout_height="0.4dp"
  328.                        android:layout_gravity="bottom"
  329.                        android:layout_marginLeft="16dp"
  330.                        android:layout_marginRight="16dp"
  331.                        android:layout_marginTop="8dp"
  332.                        android:background="@color/gray" />
  333.                 </FrameLayout>
  334.  
  335.                 <FrameLayout
  336.                    android:layout_width="match_parent"
  337.                    android:layout_height="wrap_content" >
  338.  
  339.                     <EditText
  340.                        android:id="@+id/sign_up_password_again_edit"
  341.                        android:layout_width="match_parent"
  342.                        android:layout_height="wrap_content"
  343.                        android:layout_marginLeft="16dp"
  344.                        android:layout_marginRight="8dp"
  345.                        android:layout_weight="1"
  346.                        android:background="@null"
  347.                        android:fontFamily="sans-serif"
  348.                        android:ems="10"
  349.                        android:hint="@string/password_again"
  350.                        android:inputType="textPassword"
  351.                        android:paddingBottom="8dp"
  352.                        android:paddingTop="8dp" />
  353.  
  354.                     <View
  355.                        android:id="@+id/View06"
  356.                        android:layout_width="match_parent"
  357.                        android:layout_height="0.4dp"
  358.                        android:layout_gravity="bottom"
  359.                        android:layout_marginLeft="16dp"
  360.                        android:layout_marginRight="16dp"
  361.                        android:layout_marginTop="8dp"
  362.                        android:background="@color/gray" />
  363.                 </FrameLayout>
  364.  
  365.                 <FrameLayout
  366.                    android:layout_width="match_parent"
  367.                    android:layout_height="wrap_content"
  368.                    android:layout_weight="1" >
  369.                 </FrameLayout>
  370.  
  371.                 <hu.illion.kwindoo.view.text.RobotoTextView
  372.                    android:id="@+id/login_view_create_tv_label"
  373.                    android:layout_width="wrap_content"
  374.                    android:layout_height="wrap_content"
  375.                    android:layout_gravity="right|bottom"
  376.                    android:layout_marginBottom="16dp"
  377.                    android:layout_marginRight="16dp"
  378.                    android:layout_marginTop="16dp"
  379.                    android:tag="bold"
  380.                    android:text="@string/create_acc_C"
  381.                    android:textColor="@color/blue_light" />
  382.             </LinearLayout>
  383.         </FrameLayout>
  384.     </FrameLayout>
  385.  
  386. </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement