Posts

Showing posts with the label Relative Layout in android

Relative Layout in android UI Design

Image
android program: Relative Layout in android UI Design open project >res>layout>main.xml  and edit as below main.xml: --------------------------------------------------------------------------------------------------------------------------------- <?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"     android:layout_width="fill_parent"     android:layout_height="fill_parent"     android:orientation="vertical" >     <TextView         android:id="@+id/my_label"         android:layout_width="fill_parent"         android:layout_height="wrap_content"         android:text="Face Book"         android:textSize="12pt" />     <EditText         android:id="@+id/text_box"     ...