Advertisement
Ankhwatcher

LockedOut

Sep 6th, 2013
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 2.33 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2.  
  3. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  4.                xmlns:tools="http://schemas.android.com/tools"
  5.                android:layout_width="match_parent"
  6.                android:layout_height="match_parent"
  7.                android:paddingBottom="@dimen/activity_vertical_margin"
  8.                android:paddingLeft="@dimen/activity_horizontal_margin"
  9.                android:paddingRight="@dimen/activity_horizontal_margin"
  10.                android:paddingTop="@dimen/activity_vertical_margin"
  11.                tools:context=".LockedOutActivity">
  12.  
  13.     <RelativeLayout
  14.        android:layout_width="match_parent"
  15.        android:layout_height="match_parent"
  16.        android:background="?attr/main_panel_background"
  17.        android:padding="@dimen/activity_inner_margin">
  18.  
  19.         <ScrollView
  20.            android:layout_width="match_parent"
  21.            android:layout_height="match_parent"
  22.            android:fillViewport="true">
  23.  
  24.             <LinearLayout
  25.                android:layout_width="match_parent"
  26.                android:layout_height="wrap_content"
  27.                android:orientation="vertical">
  28.  
  29.                 <TextView
  30.                    android:id="@+id/lockoutTitle"
  31.                    android:layout_width="match_parent"
  32.                    android:layout_height="wrap_content"
  33.                    android:text="@string/lockedout_title"
  34.                    android:textAppearance="?android:attr/textAppearanceLarge"/>
  35.  
  36.                 <TextView
  37.                    android:id="@+id/lockoutExplanation"
  38.                    android:layout_width="match_parent"
  39.                    android:layout_height="wrap_content"
  40.                    android:layout_marginTop="@dimen/activity_inner_margin_less_outer"
  41.                    android:text="@string/lockedout_text"
  42.                    android:textAppearance="?android:attr/textAppearanceMedium"/>
  43.             </LinearLayout>
  44.         </ScrollView>
  45.  
  46.         <Button
  47.            android:id="@+id/lockedout_calloffice"
  48.            style="@style/OrangeButton"
  49.            android:layout_width="match_parent"
  50.            android:layout_height="wrap_content"
  51.            android:layout_alignParentBottom="true"
  52.            android:text="@string/calloffice"/>
  53.     </RelativeLayout>
  54. </RelativeLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement