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

Wed, 31 Dec 2014 07:22:50 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 07:22:50 +0100
branch
TOR_BUG_3246
changeset 4
fc2d59ddac77
permissions
-rw-r--r--

Correct previous dual key logic pending first delivery installment.

     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"
     7        xmlns:gecko="http://schemas.android.com/apk/res-auto">
     9    <org.mozilla.gecko.TextSelectionHandle android:id="@+id/start_handle"
    10                                           android:layout_width="@dimen/text_selection_handle_width"
    11                                           android:layout_height="@dimen/text_selection_handle_height"
    12                                           android:src="@drawable/handle_start_level"
    13                                           android:visibility="gone"
    14                                           gecko:handleType="start"/>
    16    <org.mozilla.gecko.TextSelectionHandle android:id="@+id/middle_handle"
    17                                           android:layout_width="@dimen/text_selection_handle_width"
    18                                           android:layout_height="@dimen/text_selection_handle_height"
    19                                           android:src="@drawable/handle_middle"
    20                                           android:visibility="gone"
    21                                           gecko:handleType="middle"/>
    23    <org.mozilla.gecko.TextSelectionHandle android:id="@+id/end_handle"
    24                                           android:layout_width="@dimen/text_selection_handle_width"
    25                                           android:layout_height="@dimen/text_selection_handle_height"
    26                                           android:src="@drawable/handle_end_level"
    27                                           android:visibility="gone"
    28                                           gecko:handleType="end"/>
    29 </merge>

mercurial