OLD | NEW |
(Empty) | |
| 1 <?xml version="1.0" encoding="utf-8"?> |
| 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 |
| 4 found in the LICENSE file. --> |
| 5 |
| 6 <!-- Used by ClearBrowsingDataPreferencesTab to replace the default layout |
| 7 of a PreferenceFragment and add a footer button. --> |
| 8 |
| 9 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |
| 10 android:layout_width="match_parent" |
| 11 android:layout_height="match_parent" |
| 12 android:orientation="vertical"> |
| 13 |
| 14 <ListView |
| 15 android:id="@android:id/list" |
| 16 android:layout_width="match_parent" |
| 17 android:layout_weight="1" |
| 18 android:layout_height="0dp"/> |
| 19 |
| 20 <View style="@style/Divider"/> |
| 21 |
| 22 <Button |
| 23 android:id="@+id/clear_button" |
| 24 style="?android:attr/buttonBarButtonStyle" |
| 25 android:layout_width="match_parent" |
| 26 android:layout_height="wrap_content" |
| 27 android:focusable="true" |
| 28 android:text="@string/clear_data_delete" /> |
| 29 |
| 30 </LinearLayout> |
OLD | NEW |