Advertisement
EvgeniiKraaaaaaaav

SendCryptoMsg(XML)

Nov 18th, 2019
195
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 3.81 KB | None | 0 0
  1. //https://vk.com/evgenykravchenko0
  2.  
  3.                 ___                                        ___                   ___    
  4.                /  /\                  ___                 /  /\                 /  /\    
  5.               /  /:/_                /__/\               /  /:/_               /  /:/_  
  6.              /  /:/ /\               \  \:\             /  /:/ /\             /  /:/ /\  
  7.             /  /:/ /:/_               \  \:\           /  /:/_/::\           /  /:/ /:/_
  8.            /__/:/ /:/ /\          ___  \__\:\         /__/:/__\/\:\         /__/:/ /:/ /\
  9.            \  \:\/:/ /:/         /__/\ |  |:|         \  \:\ /~~/:/         \  \:\/:/ /:/
  10.             \  \::/ /:/          \  \:\|  |:|          \  \:\  /:/           \  \::/ /:/
  11.              \  \:\/:/            \  \:\__|:|           \  \:\/:/             \  \:\/:/  
  12.               \  \::/              \__\::::/             \  \::/               \  \::/  
  13.                \__\/                   ~~~~               \__\/                 \__\/    
  14.                             ___                                            
  15.                            /__/\                ___                 ___    
  16.                            \  \:\              /  /\               /  /\    
  17.                             \  \:\            /  /:/              /  /:/    
  18.                         _____\__\:\          /__/::\             /__/::\    
  19.                        /__/::::::::\         \__\/\:\__          \__\/\:\__
  20.                        \  \:\~~\~~\/            \  \:\/\            \  \:\/\
  21.                         \  \:\  ~~~              \__\::/             \__\::/
  22.                          \  \:\                  /__/:/              /__/:/
  23.                           \  \:\                 \__\/               \__\/  
  24.                            \__\/                      
  25.  
  26. <?xml version="1.0" encoding="utf-8"?>
  27. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  28.    xmlns:app="http://schemas.android.com/apk/res-auto"
  29.    xmlns:tools="http://schemas.android.com/tools"
  30.    android:layout_width="match_parent"
  31.    android:layout_height="match_parent"
  32.    android:background="#EE020202"
  33.    app:layout_behavior="@string/appbar_scrolling_view_behavior"
  34.    tools:context=".MainActivity"
  35.    tools:showIn="@layout/activity_main">
  36.  
  37.     <TextView
  38.        android:id="@+id/appName"
  39.        android:layout_width="wrap_content"
  40.        android:layout_height="wrap_content"
  41.        android:layout_centerHorizontal="true"
  42.        android:fontFamily="cursive"
  43.        android:text="Create crypto message"
  44.        android:textAllCaps="false"
  45.        android:textColor="#F3D3AD89"
  46.        android:textSize="30sp"
  47.        android:textStyle="bold" />
  48.     <EditText
  49.        android:id="@+id/txtIn"
  50.        android:layout_width="200dp"
  51.        android:layout_height="150dp"
  52.        android:layout_centerHorizontal="true"
  53.        android:layout_marginTop="70dp"
  54.        android:layout_marginLeft="10dp"
  55.        android:textColor="#F3D3AD89"
  56.        android:textSize="20dp"
  57.        android:lines="4"
  58.        android:text="Secret message " />
  59.  
  60.     <Button
  61.    android:id="@+id/btnEncode"
  62.    android:layout_width="120dp"
  63.    android:layout_height="wrap_content"
  64.    android:layout_centerHorizontal="true"
  65.    android:layout_marginTop="280dp"
  66.    android:background="#EE222121"
  67.    android:fontFamily="serif"
  68.    android:text="Encode/Decode"
  69.    android:textColor="#F3D3AD89" />
  70.  
  71.     <EditText
  72.        android:id="@+id/txtOut"
  73.        android:layout_width="200dp"
  74.        android:layout_height="150dp"
  75.        android:layout_centerHorizontal="true"
  76.        android:layout_marginTop="370dp"
  77.        android:layout_marginLeft="10dp"
  78.        android:textColor="#F3D3AD89"
  79.        android:textSize="20dp"
  80.        android:lines="4" />
  81.  
  82. </RelativeLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement