summaryrefslogtreecommitdiffstats
path: root/chromium/overlay/frameworks/base/core/res/res/layout/webviewchromium_color_picker_dialog_title.xml
blob: a2369fe9df8246d9f0fcdb0a60a2602016ec5ad4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright 2013 The Chromium Authors. All rights reserved.
     Use of this source code is governed by a BSD-style license that can be
     found in the LICENSE file.
-->

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:paddingBottom="15dp"
    android:paddingStart="20dp"
    android:paddingEnd="20dp"
    android:paddingTop="15dp" >

    <TextView
        android:id="@+id/webviewchromium_color_picker_title"
        style="?android:attr/textAppearanceLarge"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_toStartOf="@+id/webviewchromium_color_picker_selected_color_view_border"
        android:layout_centerVertical="true"
        android:textColor="#33B5E5"
        android:ellipsize="end"
        android:singleLine="true" />

    <FrameLayout
        android:layout_width="40dp"
        android:layout_height="40dp"
        android:layout_alignParentEnd="true"
        android:id="@+id/webviewchromium_color_picker_selected_color_view_border"
        android:background="@drawable/webviewchromium_color_picker_border"
        android:padding="2px">

        <View
            android:id="@+id/webviewchromium_color_picker_selected_color_view"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:background="@android:color/black" />
    </FrameLayout>

</RelativeLayout>