ppamorim

Untitled

Jul 27th, 2014
277
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 2.12 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.     xmlns:superlistview="http://schemas.android.com/apk/res-auto"
  5.     android:orientation="vertical"
  6.     android:layout_width="match_parent"
  7.     android:layout_height="match_parent"
  8.     android:tag="@string/nearby">
  9.  
  10.     <RelativeLayout
  11.         android:id="@+id/container_error"
  12.         android:layout_width="match_parent"
  13.         android:layout_height="match_parent"
  14.         android:visibility="gone">
  15.  
  16.     <com.github.leonardoxh.customfont.FontText
  17.         android:layout_width="wrap_content"
  18.         android:layout_height="wrap_content"
  19.         android:text="@string/error_title"
  20.         android:layout_centerInParent="true"
  21.         android:padding="16dp"/>
  22.  
  23.     </RelativeLayout>
  24.  
  25.     <RelativeLayout
  26.         android:id="@+id/container_loading"
  27.         android:layout_width="match_parent"
  28.         android:layout_height="match_parent">
  29.  
  30.         <ProgressBar
  31.             android:id="@+id/loading_cameras"
  32.             android:layout_width="wrap_content"
  33.             android:layout_height="wrap_content"
  34.             android:layout_centerInParent="true"/>
  35.  
  36.         <com.github.leonardoxh.customfont.FontText
  37.             android:layout_width="wrap_content"
  38.             android:layout_height="wrap_content"
  39.             android:columnCount="4"
  40.             android:text="@string/loading_favorites"
  41.             android:layout_below="@+id/loading_cameras"
  42.             android:layout_centerHorizontal="true"
  43.             android:padding="16dp"/>
  44.  
  45.     </RelativeLayout>
  46.  
  47.     <com.comcast.freeflow.core.FreeFlowContainer
  48.         android:id="@+id/list_cameras"
  49.         android:layout_width="match_parent"
  50.         android:layout_height="match_parent"/>
  51.  
  52.  
  53. <!--<ListView-->
  54.         <!--android:id="@+id/list_cameras"-->
  55.         <!--android:divider="@null"-->
  56.         <!--android:dividerHeight="0dp"-->
  57.         <!--android:visibility="gone"-->
  58.         <!--android:layout_width="match_parent"-->
  59.         <!--android:layout_height="match_parent"-->
  60.         <!--android:choiceMode="singleChoice"/>-->
  61.  
  62. </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment