mobile/android/base/resources/layout/doorhanger.xml

Wed, 31 Dec 2014 06:09:35 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:09:35 +0100
changeset 0
6474c204b198
permissions
-rw-r--r--

Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.

     1 <?xml version="1.0" encoding="utf-8"?>
     2 <!-- This Source Code Form is subject to the terms of the Mozilla Public
     3    - License, v. 2.0. If a copy of the MPL was not distributed with this
     4    - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
     6 <merge xmlns:android="http://schemas.android.com/apk/res/android">
     8     <LinearLayout android:layout_width="wrap_content"
     9                   android:layout_height="wrap_content"
    10                   android:orientation="horizontal"
    11                   android:padding="@dimen/doorhanger_padding">
    13         <ImageView android:id="@+id/doorhanger_icon"
    14                    android:layout_width="wrap_content"
    15                    android:layout_height="wrap_content"
    16                    android:paddingRight="@dimen/doorhanger_padding"
    17                    android:visibility="gone"/>
    19         <TextView android:id="@+id/doorhanger_title"
    20                   android:focusable="true"
    21                   android:layout_width="fill_parent"
    22                   android:layout_height="wrap_content"
    23                   android:textAppearance="?android:attr/textAppearanceMedium"
    24                   android:textColor="@color/doorhanger_text"
    25                   android:textColorLink="@color/doorhanger_link"/>
    27     </LinearLayout>
    29     <LinearLayout android:id="@+id/doorhanger_inputs"
    30               android:layout_width="wrap_content"
    31               android:layout_height="wrap_content"
    32               android:orientation="vertical"
    33               android:gravity="right"
    34               android:visibility="gone"/>
    36     <CheckBox android:id="@+id/doorhanger_checkbox"
    37               android:layout_width="fill_parent"
    38               android:layout_height="wrap_content"
    39               android:checked="true"
    40               android:textColor="@color/doorhanger_text"
    41               android:visibility="gone"/>
    43     <View android:id="@+id/divider_choices"
    44           android:layout_width="fill_parent"
    45           android:layout_height="1dp"
    46           android:visibility="gone"/>
    48     <LinearLayout android:id="@+id/doorhanger_choices"
    49                   android:layout_width="fill_parent"
    50                   android:layout_height="wrap_content"
    51                   android:orientation="horizontal"
    52                   android:visibility="gone"/>
    54     <View android:id="@+id/divider_doorhanger"
    55           android:layout_width="fill_parent"
    56           android:layout_height="1dp"
    57           android:background="#FFFF9500"
    58           android:visibility="gone"/>
    60 </merge>

mercurial