Advertisement
sprixes

activity_main

Jun 1st, 2015
410
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.01 KB | None | 0 0
  1. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2.    xmlns:app="http://schemas.android.com/apk/res-auto"
  3.    xmlns:tools="http://schemas.android.com/tools"
  4.    android:layout_width="match_parent"
  5.    android:layout_height="match_parent"
  6.    android:orientation="vertical"
  7.    tools:context=".MainActivity"
  8.    tools:ignore="MergeRootFrame">
  9.  
  10.     <android.support.v7.widget.Toolbar
  11.        android:id="@+id/main_toolbar"
  12.        android:layout_width="match_parent"
  13.        android:layout_height="wrap_content"
  14.        android:background="?attr/colorPrimary"
  15.        android:minHeight="?attr/actionBarSize"
  16.        app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
  17.        app:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar" />
  18.  
  19.     <FrameLayout
  20.  
  21.        android:id="@+id/main_container"
  22.        android:layout_width="match_parent"
  23.        android:layout_height="wrap_content"
  24.        android:layout_below="@+id/main_toolbar"
  25.        android:layout_weight="1" />
  26.  
  27. </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement