Advertisement
Guest User

Untitled

a guest
Jun 28th, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MXML 4.38 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
  3.    android:id="@+id/content_sv"
  4.    android:layout_width="match_parent"
  5.    android:layout_height="match_parent"
  6.    android:fillViewport="true"
  7.    android:scrollbarAlwaysDrawVerticalTrack="false">
  8.  
  9.     <LinearLayout
  10.        xmlns:android="http://schemas.android.com/apk/res/android"
  11.        android:layout_width="match_parent"
  12.        android:layout_height="wrap_content"
  13.        android:paddingLeft="16dp"
  14.        android:paddingRight="16dp"
  15.        android:orientation="vertical">
  16.  
  17.         <TextView
  18.            android:layout_width="match_parent"
  19.            android:layout_height="wrap_content"
  20.            android:text="@string/pegasus_mobile_common_function_authentication_phase1_sms_title"
  21.            style="@style/OnboardingScreenTitleStyle"/>
  22.  
  23.         <TextView
  24.            android:id="@+id/phone_number_verification_info_tv"
  25.            android:layout_width="match_parent"
  26.            android:layout_height="wrap_content"
  27.            android:layout_marginLeft="16dp"
  28.            android:layout_marginRight="16dp"
  29.            android:layout_marginTop="17dp"
  30.            android:text="@string/pegasus_mobile_android_function_authentication_phase1_sms_firstperagraph"
  31.            style="@style/OnboardingScreenInfoStyle"/>
  32.  
  33.         <TextView
  34.            android:layout_width="match_parent"
  35.            android:layout_height="wrap_content"
  36.            android:layout_marginTop="8dp"
  37.            android:text="@string/pegasus_mobile_common_function_authentication_phase1_sms_secondperagraph"
  38.            style="@style/OnboardingScreenInfoStyle"/>
  39.  
  40.         <RelativeLayout
  41.            xmlns:android="http://schemas.android.com/apk/res/android"
  42.            android:layout_width="match_parent"
  43.            android:layout_height="48dp"
  44.            android:layout_marginLeft="28dp"
  45.            android:layout_marginRight="28dp"
  46.            android:layout_marginTop="11dp">
  47.  
  48.             <pegasus.mobile.android.framework.pdk.android.ui.view.materialedittext.MaterialEditText
  49.                android:id="@+id/phone_number_verification_password_met"
  50.                android:layout_width="match_parent"
  51.                android:layout_height="wrap_content"
  52.                android:hint="@string/pegasus_mobile_common_function_authentication_phase1_sms_password_placeholder"
  53.                android:textSize="16sp"
  54.                android:inputType="textPassword"
  55.                android:layout_alignParentBottom="true"
  56.                style="@style/MaterialEditTextWhiteStyle"/>
  57.  
  58.             <TextView
  59.                android:id="@+id/phone_number_verification_show_hide_password_tv"
  60.                android:layout_width="40dp"
  61.                android:layout_height="match_parent"
  62.                android:gravity="fill"
  63.                android:layout_alignParentRight="true"
  64.                android:textSize="12sp"
  65.                android:textColor="@color/white_active"
  66.                android:text="@string/pegasus_mobile_common_function_authentication_phase1_sms_password_show"
  67.                android:clickable="true"
  68.                android:visibility="gone"/>
  69.             </RelativeLayout>
  70.  
  71.         <Button
  72.            android:id="@+id/next_button"
  73.            style="@style/PrimaryButtonStyle"
  74.            android:layout_gravity="center_horizontal"
  75.            android:layout_marginTop="18dp"
  76.            android:text="@string/pegasus_mobile_common_function_authentication_phase1_sms_next_button"
  77.            android:enabled="false"/>
  78.  
  79.         <TextView
  80.            android:id="@+id/phone_number_verification_resend_code_tv"
  81.            android:layout_width="match_parent"
  82.            android:layout_height="wrap_content"
  83.            android:layout_marginLeft="44dp"
  84.            android:layout_marginRight="44dp"
  85.            android:layout_marginTop="22dp"
  86.            android:gravity="center"
  87.            android:textSize="12sp"
  88.            style="@style/BoldText"
  89.            android:textColor="@color/primary_button_text_color_selector"
  90.            android:text="@string/pegasus_mobile_common_function_onboarding3_phase1_sms_resend_button"/>
  91.  
  92.         <include layout="@layout/having_trouble_template"
  93.            android:layout_width="match_parent"
  94.            android:layout_height="0dp"
  95.            android:layout_weight="1" />
  96.  
  97.     </LinearLayout>
  98. </ScrollView>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement