blob: bd55d6a95e825624cb3b1e4fc708e452c8f67f42 [file] [log] [blame]
Wenyi Wang2829deb2017-01-04 14:05:13 -08001<?xml version="1.0" encoding="utf-8"?>
2
3<!-- Copyright (C) 2017 The Android Open Source Project
4
5 Licensed under the Apache License, Version 2.0 (the "License");
6 you may not use this file except in compliance with the License.
7 You may obtain a copy of the License at
8
9 http://www.apache.org/licenses/LICENSE-2.0
10
11 Unless required by applicable law or agreed to in writing, software
12 distributed under the License is distributed on an "AS IS" BASIS,
13 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 See the License for the specific language governing permissions and
15 limitations under the License.
16-->
17
Wenyi Wangb8b86d12017-01-07 16:16:52 -080018<!-- Layout for the navigation drawer. The content view needs to be wrapped in a FrameLayout in
19 order to go full screen with a ScrimDrawable. -->
Wenyi Wang2829deb2017-01-04 14:05:13 -080020<FrameLayout
21 xmlns:android="http://schemas.android.com/apk/res/android"
Wenyi Wangb8b86d12017-01-07 16:16:52 -080022 android:id="@+id/drawer_fragment_root"
Wenyi Wang2829deb2017-01-04 14:05:13 -080023 android:layout_width="match_parent"
24 android:layout_height="match_parent"
25 android:fitsSystemWindows="true">
26
Wenyi Wang1134a992017-01-09 17:34:58 -080027 <ListView
Wenyi Wang2829deb2017-01-04 14:05:13 -080028 android:id="@+id/list"
Wenyi Wangb8b86d12017-01-07 16:16:52 -080029 android:background="@color/navigation_drawer_background_color"
Wenyi Wang2829deb2017-01-04 14:05:13 -080030 android:layout_width="match_parent"
31 android:layout_height="match_parent"
Marcus Hagerottbf7ea6c2018-03-19 09:12:32 -070032 android:clipToPadding="false"
Wenyi Wang2829deb2017-01-04 14:05:13 -080033 android:divider="@null" />
Marcus Hagerottbf7ea6c2018-03-19 09:12:32 -070034</FrameLayout>