Advertisement
Guest User

Untitled

a guest
Jul 2nd, 2016
457
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.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.    xmlns:tools="http://schemas.android.com/tools"
  4.    android:id="@+id/activity_create_new_occasion"
  5.    android:layout_width="match_parent"
  6.    android:layout_height="match_parent"
  7.    tools:context="com.mastermindcorp.alibdeir.salawat.createNewOccasion">
  8.     <RelativeLayout
  9.        android:layout_width="match_parent"
  10.        android:layout_height="wrap_content"
  11.        android:id="@+id/toolbarLL"
  12.        >
  13.  
  14.         <include
  15.            layout="@layout/toolbar"
  16.            android:layout_height="wrap_content"
  17.            android:layout_width="match_parent"
  18.            android:id="@+id/toolbar">
  19.  
  20.         <TextView
  21.            android:text="@string/createNewOccasion"
  22.            android:layout_width="wrap_content"
  23.            android:layout_height="wrap_content"
  24.            android:id="@+id/textView5"
  25.            android:textSize="18sp"
  26.            android:fontFamily="sans-serif-condensed"
  27.            android:gravity="center"
  28.            />
  29.         </include>
  30.  
  31.     </RelativeLayout>
  32.  
  33.     <EditText
  34.        android:layout_width="wrap_content"
  35.        android:layout_height="wrap_content"
  36.        android:inputType="textPersonName"
  37.        android:ems="10"
  38.        android:layout_below="@+id/relativeLayout"
  39.        android:layout_centerHorizontal="true"
  40.        android:id="@+id/editText"
  41.        android:drawableLeft="@drawable/ic_title"
  42.        android:drawableStart="@drawable/ic_title"
  43.        android:hint="@string/titleET" />
  44.  
  45.     <RelativeLayout
  46.        android:layout_width="match_parent"
  47.        android:layout_height="wrap_content"
  48.        android:id="@+id/relativeLayout"
  49.        android:padding="10dp"
  50.        android:layout_below="@+id/toolbarLL"
  51.        android:layout_alignParentLeft="true"
  52.        android:layout_alignParentStart="true">
  53.  
  54.     </RelativeLayout>
  55. </RelativeLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement