Chromium Code Reviews| Index: chrome/android/java/res/layout/clear_browsing_data_tabs.xml |
| diff --git a/chrome/android/java/res/layout/clear_browsing_data_tabs.xml b/chrome/android/java/res/layout/clear_browsing_data_tabs.xml |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..2a06b99dbe84b5b0f513902283ed5141d898b8bd |
| --- /dev/null |
| +++ b/chrome/android/java/res/layout/clear_browsing_data_tabs.xml |
| @@ -0,0 +1,30 @@ |
| +<?xml version="1.0" encoding="utf-8"?> |
| +<!-- Copyright 2017 The Chromium Authors. All rights reserved. |
| + Use of this source code is governed by a BSD-style license that can be |
| + found in the LICENSE file. --> |
| + |
| +<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android" |
|
Theresa
2017/01/19 19:08:26
nit: put the xmlns on the next line
dullweber
2017/01/20 10:53:07
Done.
|
| + xmlns:app="http://schemas.android.com/apk/res-auto" |
| + android:layout_width="match_parent" |
| + android:layout_height="match_parent"> |
| + |
| + <android.support.design.widget.AppBarLayout |
| + android:layout_width="match_parent" |
| + android:layout_height="wrap_content" |
| + android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"> |
| + |
| + <android.support.design.widget.TabLayout |
| + android:id="@+id/clear_browsing_data_tabs" |
| + android:layout_width="match_parent" |
| + android:layout_height="wrap_content" |
| + app:tabMode="fixed" |
| + app:tabGravity="fill" /> |
| + |
| + </android.support.design.widget.AppBarLayout> |
| + |
| + <android.support.v4.view.ViewPager |
| + android:id="@+id/clear_browsing_data_viewpager" |
| + android:layout_width="match_parent" |
| + android:layout_height="match_parent" |
| + app:layout_behavior="@string/appbar_scrolling_view_behavior" /> |
| +</android.support.design.widget.CoordinatorLayout> |