mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-06-03 21:11:07 +00:00
30 lines
1.8 KiB
XML
30 lines
1.8 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- This Source Code Form is subject to the terms of the Mozilla Public
|
|
- License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
- file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
|
|
|
|
<merge xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:goanna="http://schemas.android.com/apk/res-auto">
|
|
|
|
<org.mozilla.goanna.TextSelectionHandle android:id="@+id/anchor_handle"
|
|
android:layout_width="@dimen/text_selection_handle_width"
|
|
android:layout_height="@dimen/text_selection_handle_height"
|
|
android:src="@drawable/handle_anchor_level"
|
|
android:visibility="gone"
|
|
goanna:handleType="start"/>
|
|
|
|
<org.mozilla.goanna.TextSelectionHandle android:id="@+id/caret_handle"
|
|
android:layout_width="@dimen/text_selection_handle_width"
|
|
android:layout_height="@dimen/text_selection_handle_height"
|
|
android:src="@drawable/handle_middle"
|
|
android:visibility="gone"
|
|
goanna:handleType="middle"/>
|
|
|
|
<org.mozilla.goanna.TextSelectionHandle android:id="@+id/focus_handle"
|
|
android:layout_width="@dimen/text_selection_handle_width"
|
|
android:layout_height="@dimen/text_selection_handle_height"
|
|
android:src="@drawable/handle_focus_level"
|
|
android:visibility="gone"
|
|
goanna:handleType="end"/>
|
|
</merge>
|