Roll src/third_party/WebKit 3529d49:06e8485 (svn 202554:202555)
[chromium-blink-merge.git] / chrome / android / java / res / layout / preference_button.xml
blob5a18078488d36bbb643397d4368b53e6848f8000
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 <!-- Layout used by ButtonPreference for the button widget style. -->
8 <LinearLayout
9     xmlns:android="http://schemas.android.com/apk/res/android"
10     xmlns:chrome="http://schemas.android.com/apk/res-auto"
11     style="@style/PreferenceLayout"
12     android:layout_width="match_parent"
13     android:layout_height="wrap_content"
14     android:clipToPadding="false"
15     android:gravity="center_vertical"
16     android:orientation="vertical">
18     <org.chromium.ui.widget.ButtonCompat
19         android:id="@+id/button_preference"
20         android:layout_height="wrap_content"
21         android:layout_width="wrap_content"
22         android:minHeight="40dp"
23         android:textColor="#fff"
24         chrome:buttonColor="@color/pref_accent_color" />
26 </LinearLayout>