Advertisement
PedroBarbosa

Untitled

May 1st, 2016
198
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.60 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2.  
  3.  
  4. <FrameLayout android:layout_width="match_parent"
  5.     android:layout_height="match_parent"
  6.     android:orientation="vertical"
  7.     xmlns:android="http://schemas.android.com/apk/res/android">
  8.  
  9.  
  10.     <com.quarkprojects.smashi.customViews.AutofitRecyclerView
  11.         android:id="@+id/activity_movies_recycler"
  12.         android:layout_width="match_parent"
  13.         android:paddingTop="?android:attr/actionBarSize"
  14.         android:columnWidth="@dimen/item_movie_width"
  15.         android:layout_height="match_parent"
  16.         android:clipToPadding="false"
  17.         />
  18.  
  19.     <android.support.v7.widget.Toolbar
  20.         android:id="@+id/activity_searchtvrecycler_main_toolbar"
  21.         android:layout_height="wrap_content"
  22.         android:layout_width="match_parent"
  23.         android:minHeight="?attr/actionBarSize"
  24.         android:background="@color/theme_primary"
  25.         >
  26.  
  27.         <com.quarkprojects.smashi.customViews.LobsterTextView
  28.             android:layout_width="wrap_content"
  29.             android:layout_height="wrap_content"
  30.             android:text="@string/app_name"
  31.             android:textSize="22sp"
  32.             android:textColor="#FFF"
  33.             />
  34.     </android.support.v7.widget.Toolbar>
  35.  
  36.     <ProgressBar
  37.         android:id="@+id/activity_movies_progress"
  38.         android:layout_width="55dp"
  39.         android:layout_height="55dp"
  40.         android:layout_marginTop="@dimen/activity_vertical_margin"
  41.         android:layout_gravity="center"
  42.         android:visibility="gone"
  43.         style="?android:attr/progressBarStyleLarge"
  44.         />
  45.  
  46. </FrameLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement