Guest User

layout

a guest
Jun 19th, 2012
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.41 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3.    style="@style/fundo"
  4.    android:layout_width="fill_parent"
  5.    android:layout_height="fill_parent"
  6.    android:orientation="vertical" >
  7.  
  8.     <LinearLayout
  9.        style="@style/grupo_cabecalho"
  10.        android:layout_width="fill_parent"
  11.        android:layout_height="wrap_content"
  12.        android:orientation="vertical" >
  13.  
  14.         <LinearLayout
  15.            android:id="@+id/LVeiculo"
  16.            style="@style/grupo_ultimo_item"
  17.            android:layout_width="fill_parent"
  18.            android:layout_height="50dp"
  19.            android:clickable="true"
  20.            android:orientation="vertical" >
  21.  
  22.             <TextView
  23.                style="@style/text"
  24.                android:layout_width="fill_parent"
  25.                android:layout_height="fill_parent"
  26.                android:gravity="center|center"
  27.                android:text="Cabecalho" />
  28.         </LinearLayout>
  29.     </LinearLayout>
  30.  
  31.     <LinearLayout
  32.        style="@style/grupo"
  33.        android:layout_width="fill_parent"
  34.        android:layout_height="fill_parent"
  35.        android:orientation="vertical" >
  36.  
  37.         <ListView
  38.            android:id="@+id/lvEstados2"
  39.            android:layout_width="fill_parent"
  40.            android:layout_height="fill_parent" >
  41.         </ListView>
  42.     </LinearLayout>
  43.  
  44. </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment