Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //https://vk.com/evgenykravchenko0
- ___ ___ ___
- / /\ ___ / /\ / /\
- / /:/_ /__/\ / /:/_ / /:/_
- / /:/ /\ \ \:\ / /:/ /\ / /:/ /\
- / /:/ /:/_ \ \:\ / /:/_/::\ / /:/ /:/_
- /__/:/ /:/ /\ ___ \__\:\ /__/:/__\/\:\ /__/:/ /:/ /\
- \ \:\/:/ /:/ /__/\ | |:| \ \:\ /~~/:/ \ \:\/:/ /:/
- \ \::/ /:/ \ \:\| |:| \ \:\ /:/ \ \::/ /:/
- \ \:\/:/ \ \:\__|:| \ \:\/:/ \ \:\/:/
- \ \::/ \__\::::/ \ \::/ \ \::/
- \__\/ ~~~~ \__\/ \__\/
- ___
- /__/\ ___ ___
- \ \:\ / /\ / /\
- \ \:\ / /:/ / /:/
- _____\__\:\ /__/::\ /__/::\
- /__/::::::::\ \__\/\:\__ \__\/\:\__
- \ \:\~~\~~\/ \ \:\/\ \ \:\/\
- \ \:\ ~~~ \__\::/ \__\::/
- \ \:\ /__/:/ /__/:/
- \ \:\ \__\/ \__\/
- \__\/
- <?xml version="1.0" encoding="utf-8"?>
- <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:app="http://schemas.android.com/apk/res-auto"
- xmlns:tools="http://schemas.android.com/tools"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="#EE020202"
- app:layout_behavior="@string/appbar_scrolling_view_behavior"
- tools:context=".MainActivity"
- tools:showIn="@layout/activity_main">
- <TextView
- android:id="@+id/appName"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_centerHorizontal="true"
- android:fontFamily="cursive"
- android:text="Create crypto message"
- android:textAllCaps="false"
- android:textColor="#F3D3AD89"
- android:textSize="30sp"
- android:textStyle="bold" />
- <EditText
- android:id="@+id/txtIn"
- android:layout_width="200dp"
- android:layout_height="150dp"
- android:layout_centerHorizontal="true"
- android:layout_marginTop="70dp"
- android:layout_marginLeft="10dp"
- android:textColor="#F3D3AD89"
- android:textSize="20dp"
- android:lines="4"
- android:text="Secret message " />
- <Button
- android:id="@+id/btnEncode"
- android:layout_width="120dp"
- android:layout_height="wrap_content"
- android:layout_centerHorizontal="true"
- android:layout_marginTop="280dp"
- android:background="#EE222121"
- android:fontFamily="serif"
- android:text="Encode/Decode"
- android:textColor="#F3D3AD89" />
- <EditText
- android:id="@+id/txtOut"
- android:layout_width="200dp"
- android:layout_height="150dp"
- android:layout_centerHorizontal="true"
- android:layout_marginTop="370dp"
- android:layout_marginLeft="10dp"
- android:textColor="#F3D3AD89"
- android:textSize="20dp"
- android:lines="4" />
- </RelativeLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement