Home | History | Annotate | Download | only in layout-port
      1 <?xml version="1.0" encoding="utf-8"?>
      2 <!-- Copyright (C) 2007 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 <!-- Full screen view projects under the status bar and contains the background -->
     18 <FrameLayout
     19     xmlns:android="http://schemas.android.com/apk/res/android"
     20     xmlns:launcher="http://schemas.android.com/apk/res/com.android.launcher"
     21 
     22     android:id="@+id/launcher"
     23     android:layout_width="match_parent"
     24     android:layout_height="match_parent"
     25     android:background="@drawable/workspace_bg">
     26 
     27     <com.android.launcher2.DragLayer
     28         android:id="@+id/drag_layer"
     29         android:layout_width="match_parent"
     30         android:layout_height="match_parent"
     31         android:fitsSystemWindows="true">
     32 
     33         <!-- Keep these behind the workspace so that they are not visible when
     34              we go into AllApps -->
     35         <include
     36             android:id="@+id/dock_divider"
     37             layout="@layout/workspace_divider"
     38             android:layout_width="match_parent"
     39             android:layout_height="wrap_content"
     40             android:layout_marginBottom="@dimen/button_bar_height"
     41             android:layout_gravity="bottom" />
     42 
     43         <include
     44             android:id="@+id/paged_view_indicator"
     45             layout="@layout/scroll_indicator"
     46             android:layout_width="wrap_content"
     47             android:layout_height="wrap_content"
     48             android:layout_gravity="bottom"
     49             android:layout_marginBottom="@dimen/button_bar_height" />
     50 
     51         <!-- The workspace contains 5 screens of cells -->
     52         <com.android.launcher2.Workspace
     53             android:id="@+id/workspace"
     54             android:layout_width="match_parent"
     55             android:layout_height="match_parent"
     56             android:paddingStart="@dimen/workspace_left_padding"
     57             android:paddingEnd="@dimen/workspace_right_padding"
     58             android:paddingTop="@dimen/workspace_top_padding"
     59             android:paddingBottom="@dimen/workspace_bottom_padding"
     60             launcher:defaultScreen="2"
     61             launcher:cellCountX="@integer/cell_count_x"
     62             launcher:cellCountY="@integer/cell_count_y"
     63             launcher:pageSpacing="@dimen/workspace_page_spacing"
     64             launcher:scrollIndicatorPaddingLeft="@dimen/workspace_divider_padding_left"
     65             launcher:scrollIndicatorPaddingRight="@dimen/workspace_divider_padding_right">
     66 
     67             <include android:id="@+id/cell1" layout="@layout/workspace_screen" />
     68             <include android:id="@+id/cell2" layout="@layout/workspace_screen" />
     69             <include android:id="@+id/cell3" layout="@layout/workspace_screen" />
     70             <include android:id="@+id/cell4" layout="@layout/workspace_screen" />
     71             <include android:id="@+id/cell5" layout="@layout/workspace_screen" />
     72         </com.android.launcher2.Workspace>
     73 
     74         <include layout="@layout/hotseat"
     75             android:id="@+id/hotseat"
     76             android:layout_width="match_parent"
     77             android:layout_height="@dimen/button_bar_height_plus_padding"
     78             android:layout_gravity="bottom" />
     79 
     80         <include
     81             android:id="@+id/qsb_bar"
     82             layout="@layout/qsb_bar" />
     83 
     84         <!-- The Workspace cling must appear under the AppsCustomizePagedView below to ensure
     85              that it is still visible during the transition to AllApps and doesn't overlay on
     86              top of that view. -->
     87         <include layout="@layout/workspace_cling"
     88             android:id="@+id/workspace_cling"
     89             android:layout_width="match_parent"
     90             android:layout_height="match_parent"
     91             android:visibility="gone" />
     92 
     93         <include layout="@layout/folder_cling"
     94             android:id="@+id/folder_cling"
     95             android:layout_width="match_parent"
     96             android:layout_height="match_parent"
     97             android:visibility="gone" />
     98 
     99         <com.android.launcher2.DrawableStateProxyView
    100             android:id="@+id/voice_button_proxy"
    101             android:layout_width="80dp"
    102             android:layout_height="@dimen/qsb_bar_height"
    103             android:layout_gravity="top|end"
    104             android:clickable="true"
    105             android:onClick="onClickVoiceButton"
    106             android:importantForAccessibility="no"
    107             launcher:sourceViewId="@+id/voice_button" />
    108 
    109         <include layout="@layout/apps_customize_pane"
    110             android:id="@+id/apps_customize_pane"
    111             android:layout_width="match_parent"
    112             android:layout_height="match_parent"
    113             android:visibility="invisible" />
    114     </com.android.launcher2.DragLayer>
    115 </FrameLayout>
    116