Advertisement
Guest User

Xml file

a guest
Feb 20th, 2020
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 5.93 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:layout_margin="10dp"
  11.        android:orientation="horizontal">
  12.  
  13.         <TextView
  14.            android:layout_width="0dp"
  15.            android:layout_height="wrap_content"
  16.            android:layout_weight="1"
  17.            android:text="From"
  18.            android:textSize="20dp"/>
  19.  
  20.         <FrameLayout
  21.            android:layout_width="0dp"
  22.            android:layout_height="wrap_content"
  23.            android:layout_weight="5"
  24.            android:layout_marginLeft="10dp">
  25.  
  26.             <Spinner
  27.                android:id="@+id/spinner"
  28.                android:layout_width="match_parent"
  29.                android:background="#00000000"
  30.                android:layout_height="wrap_content"/>
  31.  
  32.             <ImageView
  33.                android:layout_gravity="end|bottom"
  34.                android:contentDescription="@null"
  35.                android:layout_width="wrap_content"
  36.                android:layout_height="wrap_content"
  37.                android:src="@drawable/ic_keyboard_arrow_down_black_24dp" />
  38.         </FrameLayout>
  39.  
  40.     </LinearLayout>
  41.  
  42.     <View
  43.        android:layout_width="match_parent"
  44.        android:layout_height="1dp"
  45.        android:layout_marginTop="10dp"
  46.        android:background="#0F0000"/>
  47.  
  48.     <LinearLayout
  49.        android:layout_width="match_parent"
  50.        android:layout_height="wrap_content"
  51.        android:layout_margin="10dp"
  52.        android:orientation="horizontal">
  53.  
  54.         <TextView
  55.            android:layout_width="0dp"
  56.            android:layout_height="wrap_content"
  57.            android:layout_weight="1"
  58.            android:text="To"
  59.            android:textSize="20dp"/>
  60.  
  61.         <FrameLayout
  62.            android:layout_width="0dp"
  63.            android:layout_height="wrap_content"
  64.            android:layout_weight="5"
  65.            android:layout_marginLeft="10dp">
  66.  
  67.             <EditText
  68.                android:layout_width="match_parent"
  69.                android:layout_height="wrap_content"
  70.                android:background="#00000000"/>
  71.  
  72.             <ImageView
  73.                android:id="@+id/arrow_to"
  74.                android:layout_gravity="right"
  75.                android:layout_width="wrap_content"
  76.                android:layout_height="wrap_content"
  77.                android:src="@drawable/ic_keyboard_arrow_down_black_24dp" />
  78.         </FrameLayout>
  79.  
  80.     </LinearLayout>
  81.  
  82.     <View
  83.        android:layout_width="match_parent"
  84.        android:layout_height="1dp"
  85.        android:layout_marginTop="10dp"
  86.        android:background="#0F0000"/>
  87.  
  88.     <LinearLayout
  89.        android:id="@+id/layout"
  90.        android:layout_width="match_parent"
  91.        android:layout_height="wrap_content"
  92.        android:visibility="gone"
  93.        android:orientation="vertical">
  94.  
  95.         <LinearLayout
  96.            android:layout_width="match_parent"
  97.            android:layout_height="wrap_content"
  98.            android:layout_margin="10dp"
  99.            android:orientation="horizontal">
  100.  
  101.             <TextView
  102.                android:layout_width="0dp"
  103.                android:layout_height="wrap_content"
  104.                android:layout_weight="1"
  105.                android:text="CC"
  106.                android:textSize="20dp"/>
  107.  
  108.             <FrameLayout
  109.                android:layout_width="0dp"
  110.                android:layout_height="wrap_content"
  111.                android:layout_weight="5"
  112.                android:layout_marginLeft="10dp">
  113.  
  114.                 <EditText
  115.                    android:layout_width="match_parent"
  116.                    android:layout_height="wrap_content"
  117.                    android:background="#00000000"/>
  118.  
  119.             </FrameLayout>
  120.  
  121.         </LinearLayout>
  122.  
  123.         <View
  124.            android:layout_width="match_parent"
  125.            android:layout_height="1dp"
  126.            android:layout_marginTop="10dp"
  127.            android:background="#0F0000"/>
  128.  
  129.         <LinearLayout
  130.            android:layout_width="match_parent"
  131.            android:layout_height="wrap_content"
  132.            android:layout_margin="10dp"
  133.            android:orientation="horizontal">
  134.  
  135.             <TextView
  136.                android:layout_width="0dp"
  137.                android:layout_height="wrap_content"
  138.                android:layout_weight="1"
  139.                android:text="BCC"
  140.                android:textSize="20dp"/>
  141.  
  142.             <FrameLayout
  143.                android:layout_width="0dp"
  144.                android:layout_height="wrap_content"
  145.                android:layout_weight="5"
  146.                android:layout_marginLeft="10dp">
  147.  
  148.                 <EditText
  149.                    android:layout_width="match_parent"
  150.                    android:layout_height="wrap_content"
  151.                    android:background="#00000000"/>
  152.  
  153.             </FrameLayout>
  154.  
  155.         </LinearLayout>
  156.  
  157.         <View
  158.            android:layout_width="match_parent"
  159.            android:layout_height="1dp"
  160.            android:layout_marginTop="10dp"
  161.            android:background="#0F0000"/>
  162.  
  163.     </LinearLayout>
  164.  
  165.     <EditText
  166.        android:layout_width="match_parent"
  167.        android:layout_height="wrap_content"
  168.        android:layout_margin="10dp"
  169.        android:hint="Subject"
  170.        android:background="#00000000"/>
  171.  
  172.     <View
  173.        android:layout_width="match_parent"
  174.        android:layout_height="1dp"
  175.        android:layout_marginTop="10dp"
  176.        android:background="#0F0000"/>
  177.  
  178.     <EditText
  179.        android:layout_width="match_parent"
  180.        android:layout_height="wrap_content"
  181.        android:layout_margin="10dp"
  182.        android:hint="Compose Email"
  183.        android:background="#00000000"/>
  184.  
  185. </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement