Advertisement
aldakur

infoinstalacion_fragment1

Mar 6th, 2015
289
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 3.22 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2.  
  3. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  4.    android:layout_width="match_parent"
  5.    android:layout_height="match_parent"
  6.    android:orientation="vertical"
  7.    android:background="@color/blue">
  8. <LinearLayout
  9.    android:layout_width="match_parent"
  10.    android:layout_height="wrap_content"
  11.    android:orientation="vertical"
  12.    android:background="@color/red"
  13.    android:layout_weight="100">
  14.     <ImageView
  15.        android:id="@+id/infoinstalacion_fragment1_imgfoto"
  16.        android:layout_width="match_parent"
  17.        android:layout_height="wrap_content"
  18.        android:scaleType="fitXY"
  19.        android:src="@drawable/pol_alza" />
  20.  
  21.         <fragment
  22.        android:id="@+id/infoinstalacion_fragment1_map"
  23.        android:layout_width="match_parent"
  24.        android:layout_height="wrap_content"
  25.        class="com.google.android.gms.maps.SupportMapFragment" />
  26. </LinearLayout>
  27. <LinearLayout
  28.    android:layout_width="match_parent"
  29.    android:layout_height="wrap_content"
  30.    android:orientation="vertical"
  31.    android:background="@color/Yellow"
  32.    android:layout_weight="40">
  33.      
  34.     <TextView
  35.        android:id="@+id/infoinstalacion_fragment1_titulo_direccion"
  36.        android:layout_width="wrap_content"
  37.        android:layout_height="wrap_content"
  38.        android:text="@string/titulo_direccion"
  39.        android:textSize="15dp"
  40.        android:layout_marginLeft="20dp"
  41.        android:layout_marginTop="5dp"
  42.        />
  43.         <TextView
  44.        android:id="@+id/infoinstalacion_fragment1_tv_direccion"
  45.        android:layout_width="wrap_content"
  46.        android:layout_height="wrap_content"
  47.        android:text="Direccion"
  48.        android:textSize="15dp"
  49.        android:layout_marginLeft="20dp"
  50.        android:layout_marginTop="5dp"
  51. />
  52.    <TextView
  53.        android:id="@+id/infoinstalacion_fragment1_titulo_telefono"
  54.        android:layout_width="wrap_content"
  55.        android:layout_height="wrap_content"
  56.        android:text="@string/titulo_telefono"
  57.        android:textSize="15dp"
  58.        android:layout_marginLeft="20dp"
  59.        android:layout_marginTop="5dp"
  60. />
  61.  
  62.     <TextView
  63.        android:id="@+id/infoinstalacion_fragment1_tv_telefono"
  64.        android:layout_width="wrap_content"
  65.        android:layout_height="wrap_content"
  66.        android:text="Telefono"
  67.        android:textSize="15dp"
  68.        android:layout_marginLeft="20dp"
  69.        android:layout_marginTop="5dp"
  70.        />
  71.  
  72.     <TextView
  73.        android:id="@+id/infoinstalacion_fragment1_titulo_email"
  74.        android:layout_width="wrap_content"
  75.        android:layout_height="wrap_content"
  76.        android:text="@string/titulo_email"
  77.        android:textSize="15dp"
  78.        android:layout_marginLeft="20dp"
  79.        android:layout_marginTop="5dp"
  80. />
  81.  
  82.     <TextView
  83.        android:id="@+id/infoinstalacion_fragment1_tv_nombre"
  84.        android:layout_width="wrap_content"
  85.        android:layout_height="wrap_content"
  86.        android:text="Nombre"
  87.        android:textSize="15dp"
  88.        android:layout_marginLeft="20dp"
  89.        android:layout_marginTop="5dp"
  90.        android:layout_marginBottom="5dp"
  91. />
  92. </LinearLayout>
  93.  
  94. </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement