Advertisement
Guest User

Untitled

a guest
Dec 19th, 2014
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.23 KB | None | 0 0
  1. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2.     xmlns:tools="http://schemas.android.com/tools"
  3.     android:layout_width="match_parent"
  4.     android:layout_height="match_parent"
  5.     android:background="@drawable/bg_rg"
  6.     tools:context=".MainActivity" >
  7.  
  8.     <include
  9.         android:id="@+id/linearLayout1_ref"
  10.         android:layout_width="match_parent"
  11.         android:layout_height="wrap_content"
  12.         android:layout_alignParentLeft="true"
  13.         android:layout_alignParentTop="true"
  14.         layout="@layout/button_bar" />
  15.  
  16.     <LinearLayout
  17.         android:layout_width="match_parent"
  18.         android:layout_height="match_parent"
  19.         android:layout_alignParentLeft="true"
  20.         android:layout_below="@+id/linearLayout1_ref"
  21.         android:gravity="bottom"
  22.         android:orientation="vertical" >
  23.  
  24.         <TextView
  25.             android:id="@+id/centreTexteView"
  26.             android:layout_width="wrap_content"
  27.             android:layout_height="wrap_content"
  28.             android:layout_gravity="center"
  29.             android:text="@string/dummy_text"
  30.             android:textColor="@color/blanc"
  31.             android:textSize="15sp" />
  32.        
  33.     </LinearLayout>
  34.  
  35. </RelativeLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement