OLD | NEW |
(Empty) | |
| 1 <?xml version="1.0" encoding="utf-8"?> |
| 2 <!-- Copyright 2016 The Chromium Authors. All rights reserved. |
| 3 Use of this source code is governed by a BSD-style license that can be |
| 4 found in the LICENSE file. --> |
| 5 |
| 6 <org.chromium.chrome.browser.widget.BottomSheetContentController |
| 7 xmlns:android="http://schemas.android.com/apk/res/android" |
| 8 xmlns:app="http://schemas.android.com/apk/res-auto" |
| 9 android:id="@+id/bottom_nav" |
| 10 android:layout_width="match_parent" |
| 11 android:layout_height="@dimen/bottom_nav_height" |
| 12 android:layout_gravity="start|bottom" |
| 13 android:background="@color/appbar_background" |
| 14 app:menu="@menu/bottom_sheet_nav_menu" |
| 15 app:itemIconTint="@color/bottom_nav_tint" |
| 16 app:itemTextColor="@color/bottom_nav_tint" |
| 17 android:visibility="gone" /> |
OLD | NEW |