Durable Storage: Refactor browser test and test the basic "deny" flow.
[chromium-blink-merge.git] / chrome / android / java / res / layout / preference_text_scale.xml
blob8d667cc189562be1c274166e5720a121365ac563
1 <?xml version="1.0" encoding="utf-8"?>
2 <!-- Copyright 2014 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. -->
6 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
7     android:layout_width="match_parent"
8     android:layout_height="wrap_content"
9     android:orientation="vertical" >
11     <LinearLayout
12         android:layout_width="match_parent"
13         android:layout_height="wrap_content"
14         android:gravity="center_vertical"
15         android:orientation="horizontal" >
17         <TextView
18             android:id="@+id/seekbar_amount"
19             style="@style/PreferenceSummary"
20             android:layout_width="wrap_content"
21             android:layout_height="wrap_content"
22             android:minWidth="40sp" />
24         <SeekBar
25             android:id="@+id/seekbar"
26             android:layout_width="0dp"
27             android:layout_height="wrap_content"
28             android:layout_weight="1" />
30     </LinearLayout>
32     <TextView
33         android:id="@+id/preview"
34         android:layout_width="match_parent"
35         android:layout_height="180dp"
36         android:layout_marginTop="10dp"
37         android:background="#fafafa"
38         android:padding="16dp"
39         android:text="@string/font_size_preview_text"
40         android:textColor="?android:attr/textColorPrimary" />
42 </LinearLayout>