Advertisement
aldakur

Untitled

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