<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:weightSum="1">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight=".5"
android:orientation="vertical">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:text="@string/Encode"
android:textColor="@android:color/holo_blue_dark"
android:textSize="@dimen/twenty" />
<EditText
android:id="@+id/editEncode"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_above="@+id/txtEncoded"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:gravity="center"
android:hint="@string/EnterText" />
<TextView
android:id="@+id/txtEncoded"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:layout_marginTop="@dimen/twenty"
android:textIsSelectable="true"
android:text="Encode Text" />
<Button
android:id="@+id/btEncode"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
android:text="@string/Encode" />
</RelativeLayout>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight=".5">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="5dp"
android:background="@android:color/black"></LinearLayout>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:text="@string/Decode"
android:textColor="@android:color/holo_blue_dark"
android:textSize="@dimen/twenty" />
<EditText
android:id="@+id/editDecode"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_above="@+id/txtDecoded"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:gravity="center"
android:hint="@string/EnterText" />
<TextView
android:id="@+id/txtDecoded"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:layout_marginTop="@dimen/twenty"
android:text="Decode Text"
android:textIsSelectable="true" />
<Button
android:id="@+id/btDecode"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
android:text="@string/Decode" />
</RelativeLayout>
</LinearLayout>
No comments:
Post a Comment