shlist

share and manage lists between multiple people
Log | Files | Refs

activity_home_screen.xml (1687B)


      1 <?xml version="1.0" encoding="utf-8"?>
      2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
      3     android:orientation="vertical"
      4     xmlns:app="http://schemas.android.com/apk/res-auto"
      5     xmlns:tools="http://schemas.android.com/tools"
      6     android:layout_width="match_parent"
      7     android:layout_height="match_parent"
      8     tools:context="ca.absentmindedproductions.shlist.HomeScreen">
      9 
     10     <android.support.v7.widget.Toolbar
     11         android:id="@+id/my_toolbar"
     12         android:layout_width="match_parent"
     13         android:layout_height="56dp"
     14         android:background="?attr/colorPrimary"
     15         android:elevation="4dp"
     16         android:theme="@style/ThemeOverlay.AppCompat.ActionBar"
     17         app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
     18         tools:layout_editor_absoluteY="0dp"
     19         tools:layout_editor_absoluteX="8dp" />
     20 
     21     <LinearLayout
     22         android:layout_width="match_parent"
     23         android:layout_height="match_parent">
     24 
     25         <FrameLayout
     26             android:id="@+id/current_fragment"
     27             android:layout_width="match_parent"
     28             android:layout_height="match_parent"
     29             android:layout_weight="1"
     30             android:layout_alignParentBottom="true"
     31             android:background="@color/blue"
     32             android:visibility="gone"/>
     33 
     34         <FrameLayout
     35             android:id="@+id/available_fragment"
     36             android:layout_width="match_parent"
     37             android:layout_height="match_parent"
     38             android:layout_weight="1"
     39             android:layout_alignParentTop="true"
     40             android:background="@color/green"
     41             android:visibility="gone"/>
     42 
     43 
     44     </LinearLayout>
     45 
     46 
     47 
     48 </LinearLayout>