Add new certificateProvider extension API.
[chromium-blink-merge.git] / chrome / android / java / res / layout / custom_preference.xml
blob30cdaf8fe02790f00c010d4f2c2ef3a1ada56eac
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 for a preference with a title and a custom view below the title. -->
7 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
8     style="@style/PreferenceLayout"
9     android:layout_width="match_parent"
10     android:layout_height="wrap_content"
11     android:gravity="center_vertical"
12     android:orientation="vertical">
14     <TextView
15         android:id="@android:id/title"
16         style="@style/PreferenceTitle"
17         android:layout_width="match_parent"
18         android:layout_height="wrap_content" />
20     <FrameLayout
21         android:id="@android:id/widget_frame"
22         android:layout_width="match_parent"
23         android:layout_height="wrap_content" />
25 </LinearLayout>