|
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/. --> |
|
5 |
|
6 <merge xmlns:android="http://schemas.android.com/apk/res/android" |
|
7 xmlns:gecko="http://schemas.android.com/apk/res-auto"> |
|
8 |
|
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"/> |
|
15 |
|
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"/> |
|
22 |
|
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> |