Advertisement
PedroBarbosa

Untitled

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