OLD | NEW |
---|---|
1 <?xml version="1.0" encoding="utf-8"?> | 1 <?xml version="1.0" encoding="utf-8"?> |
2 <!-- Copyright 2017 The Chromium Authors. All rights reserved. | 2 <!-- Copyright 2017 The Chromium Authors. All rights reserved. |
3 Use of this source code is governed by a BSD-style license that can be | 3 Use of this source code is governed by a BSD-style license that can be |
4 found in the LICENSE file. --> | 4 found in the LICENSE file. --> |
5 | 5 |
6 <android.support.design.widget.CoordinatorLayout | 6 <android.support.design.widget.CoordinatorLayout |
7 xmlns:android="http://schemas.android.com/apk/res/android" | 7 xmlns:android="http://schemas.android.com/apk/res/android" |
8 xmlns:app="http://schemas.android.com/apk/res-auto" | 8 xmlns:app="http://schemas.android.com/apk/res-auto" |
9 android:layout_width="match_parent" | 9 android:layout_width="match_parent" |
10 android:layout_height="match_parent"> | 10 android:layout_height="match_parent"> |
11 | 11 |
12 <android.support.design.widget.AppBarLayout | 12 <android.support.design.widget.AppBarLayout |
13 android:layout_width="match_parent" | 13 android:layout_width="match_parent" |
14 android:layout_height="wrap_content" | 14 android:layout_height="wrap_content" |
15 android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"> | 15 android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"> |
16 | 16 |
17 <android.support.design.widget.TabLayout | 17 <android.support.design.widget.TabLayout |
18 android:id="@+id/clear_browsing_data_tabs" | 18 android:id="@+id/clear_browsing_data_tabs" |
19 android:layoutDirection="ltr" | |
msramek
2017/01/25 15:24:23
Maybe comment here that RTL is addressed in the Ja
dullweber
2017/01/25 17:22:06
Done.
| |
19 android:layout_width="match_parent" | 20 android:layout_width="match_parent" |
20 android:layout_height="wrap_content" | 21 android:layout_height="wrap_content" |
21 app:tabMode="fixed" | 22 app:tabMode="fixed" |
22 app:tabGravity="fill" /> | 23 app:tabGravity="fill" /> |
23 | 24 |
24 </android.support.design.widget.AppBarLayout> | 25 </android.support.design.widget.AppBarLayout> |
25 | 26 |
26 <android.support.v4.view.ViewPager | 27 <android.support.v4.view.ViewPager |
27 android:id="@+id/clear_browsing_data_viewpager" | 28 android:id="@+id/clear_browsing_data_viewpager" |
28 android:layout_width="match_parent" | 29 android:layout_width="match_parent" |
29 android:layout_height="match_parent" | 30 android:layout_height="match_parent" |
30 app:layout_behavior="@string/appbar_scrolling_view_behavior" /> | 31 app:layout_behavior="@string/appbar_scrolling_view_behavior" /> |
31 </android.support.design.widget.CoordinatorLayout> | 32 </android.support.design.widget.CoordinatorLayout> |
OLD | NEW |