<?xml version="1.0" encoding="utf-8"?>
   <!--

        Copyright (c) 2013, AllSeen Alliance. All rights reserved.

           Permission to use, copy, modify, and/or distribute this software for any
           purpose with or without fee is hereby granted, provided that the above
           copyright notice and this permission notice appear in all copies.

           THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
           WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
           MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
           ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
           WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
           ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
           OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

  -->
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="match_parent"
    >

    <include
        android:id="@+id/icon_current_network"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        layout="@layout/current_network_layout"/>
    
    <!-- Icon version -->
    <TextView
        android:id="@+id/icon_version_label"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_below="@id/icon_current_network"
        android:text="@string/version"        
        android:textSize="20sp"
        android:padding="5dp" />
    
    <TextView
        android:id="@+id/icon_version_value"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" 
        android:layout_toRightOf="@id/icon_version_label" 
        android:layout_alignBaseline="@id/icon_version_label"     
        android:textSize="20sp"
        android:padding="5dp" />

    <!-- Icon mimeType -->
    <TextView
        android:id="@+id/icon_mime_type_label"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_below="@id/icon_version_label"
        android:text="@string/icon_mime_type_label"        
        android:textSize="20sp"
        android:padding="5dp" />
    
    <TextView
        android:id="@+id/icon_mime_type_value"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" 
        android:layout_toRightOf="@id/icon_mime_type_label"
        android:layout_alignBaseline="@id/icon_mime_type_label"       
        android:textSize="20sp"
        android:padding="5dp" />
    
    <!-- Icon size -->
    <TextView
        android:id="@+id/icon_size_label"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_below="@id/icon_mime_type_label"
        android:text="@string/icon_size_label"        
        android:textSize="20sp"
        android:padding="5dp" />
    
  	<TextView
        android:id="@+id/icon_size_value"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" 
        android:layout_toRightOf="@id/icon_size_label"
        android:layout_alignBaseline="@id/icon_size_label"       
        android:textSize="20sp"
        android:padding="5dp" />
  	
  	<!-- Icon url -->
  	<RelativeLayout 
  	    android:id="@+id/icon_url_layout"
	    android:layout_width="wrap_content"
	    android:layout_height="wrap_content"
	    android:layout_below="@id/icon_size_label">
	    <TextView
	        android:id="@+id/icon_url_label"
	        android:layout_width="wrap_content"
	        android:layout_height="wrap_content"
	        android:text="@string/icon_url_label"        
	        android:textSize="20sp"
	        android:padding="5dp" />
	    
	  	<TextView
	        android:id="@+id/icon_url_value"
	        android:autoLink="web"
	        android:layout_width="wrap_content"
	        android:layout_height="wrap_content" 
	        android:layout_toRightOf="@id/icon_url_label"
	        android:layout_alignBaseline="@id/icon_url_label"       
	        android:textSize="20sp"
	        android:padding="5dp" />
    </RelativeLayout>
  
  	<!-- Icon content -->
  	<ImageView android:id="@+id/icon_content"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_below="@id/icon_url_layout"
        android:src="@drawable/ic_launcher"
        android:contentDescription="@string/device_icon"
        />

</RelativeLayout>



