Home | History | Annotate | Download | only in layout-sw720dp
      1 <?xml version="1.0" encoding="utf-8"?>
      2 <!-- Copyright (C) 2013 The Android Open Source Project
      3 
      4      Licensed under the Apache License, Version 2.0 (the "License");
      5      you may not use this file except in compliance with the License.
      6      You may obtain a copy of the License at
      7 
      8           http://www.apache.org/licenses/LICENSE-2.0
      9 
     10      Unless required by applicable law or agreed to in writing, software
     11      distributed under the License is distributed on an "AS IS" BASIS,
     12      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     13      See the License for the specific language governing permissions and
     14      limitations under the License.
     15 -->
     16 
     17 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
     18     android:layout_width="match_parent"
     19     android:layout_height="match_parent"
     20     android:orientation="vertical">
     21 
     22     <Toolbar
     23         android:id="@+id/toolbar"
     24         android:layout_width="match_parent"
     25         android:layout_height="?android:attr/actionBarSize"
     26         android:background="?android:attr/colorPrimary"
     27         android:elevation="8dp"
     28         android:theme="?android:attr/actionBarTheme">
     29 
     30         <Spinner
     31             android:id="@+id/stack"
     32             android:layout_width="wrap_content"
     33             android:layout_height="wrap_content"
     34             android:layout_marginStart="4dp"
     35             android:overlapAnchor="true" />
     36 
     37     </Toolbar>
     38 
     39     <LinearLayout
     40         android:layout_width="match_parent"
     41         android:layout_height="0dp"
     42         android:layout_weight="1"
     43         android:orientation="horizontal"
     44         android:baselineAligned="false">
     45 
     46         <FrameLayout
     47             android:id="@+id/container_roots"
     48             android:layout_width="256dp"
     49             android:layout_height="match_parent" />
     50 
     51         <LinearLayout
     52             android:layout_width="0dp"
     53             android:layout_height="match_parent"
     54             android:layout_weight="1"
     55             android:orientation="vertical"
     56             android:elevation="8dp"
     57             android:background="@color/material_grey_50">
     58 
     59             <com.android.documentsui.DirectoryContainerView
     60                 android:id="@+id/container_directory"
     61                 android:layout_width="match_parent"
     62                 android:layout_height="0dp"
     63                 android:layout_weight="1" />
     64 
     65             <FrameLayout
     66                 android:id="@+id/container_save"
     67                 android:layout_width="match_parent"
     68                 android:layout_height="wrap_content"
     69                 android:background="@color/material_grey_50"
     70                 android:elevation="8dp" />
     71 
     72         </LinearLayout>
     73 
     74     </LinearLayout>
     75 
     76 </LinearLayout>
     77