Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 1st, 2012  |  syntax: XML  |  size: 0.98 KB  |  hits: 20  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3.    android:layout_width="fill_parent"
  4.         android:layout_height="20dp"
  5.    android:background="#91C0D5"
  6.    android:orientation="vertical" >
  7.  
  8.     <LinearLayout
  9.        android:layout_width="fill_parent"
  10.        android:layout_height="60dp"
  11.        android:orientation="horizontal" >
  12.  
  13.         <LinearLayout
  14.            android:layout_width="0dp"
  15.            android:layout_height="wrap_content"
  16.            android:layout_weight="1"
  17.            android:gravity="center"
  18.            android:paddingLeft="20dp" >
  19.  
  20.             <TextView
  21.                android:id="@+id/data_evento"
  22.                android:layout_width="fill_parent"
  23.                android:layout_height="wrap_content"
  24.                android:padding="3dp"
  25.                android:textColor="#FFFFFF"
  26.                android:textSize="20dp" />
  27.         </LinearLayout>
  28.     </LinearLayout>
  29.  
  30. </LinearLayout>