diff options
author | Tomaž Vajngerl <tomaz.vajngerl@collabora.co.uk> | 2015-03-25 17:00:45 +0900 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2015-03-30 09:23:45 +0200 |
commit | befa877c270ebda7615f981cad3f0938a5600e00 (patch) | |
tree | 3d622c235e7414086ba6fd0e2070f0c210315d7b /android | |
parent | 0d61a74cab7e7341750d7177b4ac3f261e9a6384 (diff) |
android: fix wrong TextCursorView class name, format xml
Change-Id: I54d68cd5ba17bae675c8da421f2e661ac20abe77
Diffstat (limited to 'android')
-rw-r--r-- | android/experimental/LOAndroid3/res/layout/text_selection_handles.xml | 46 |
1 files changed, 25 insertions, 21 deletions
diff --git a/android/experimental/LOAndroid3/res/layout/text_selection_handles.xml b/android/experimental/LOAndroid3/res/layout/text_selection_handles.xml index 122d1b8bb13e..0ee1048f36f0 100644 --- a/android/experimental/LOAndroid3/res/layout/text_selection_handles.xml +++ b/android/experimental/LOAndroid3/res/layout/text_selection_handles.xml @@ -6,29 +6,33 @@ <merge xmlns:android="http://schemas.android.com/apk/res/android" xmlns:gecko="http://schemas.android.com/apk/res-auto"> - <org.mozilla.gecko.TextSelectionHandle android:id="@+id/start_handle" - android:layout_width="@dimen/text_selection_handle_width" - android:layout_height="@dimen/text_selection_handle_height" - android:src="@drawable/handle_start_level" - android:visibility="gone" - gecko:handleType="start"/> + <org.mozilla.gecko.TextSelectionHandle + android:id="@+id/start_handle" + android:layout_width="@dimen/text_selection_handle_width" + android:layout_height="@dimen/text_selection_handle_height" + android:src="@drawable/handle_start_level" + android:visibility="gone" + gecko:handleType="start"/> - <org.mozilla.gecko.TextSelectionHandle android:id="@+id/middle_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" - gecko:handleType="middle"/> + <org.mozilla.gecko.TextSelectionHandle + android:id="@+id/middle_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" + gecko:handleType="middle"/> - <org.mozilla.gecko.TextSelectionHandle android:id="@+id/end_handle" - android:layout_width="@dimen/text_selection_handle_width" - android:layout_height="@dimen/text_selection_handle_height" - android:src="@drawable/handle_end_level" - android:visibility="gone" - gecko:handleType="end"/> + <org.mozilla.gecko.TextSelectionHandle + android:id="@+id/end_handle" + android:layout_width="@dimen/text_selection_handle_width" + android:layout_height="@dimen/text_selection_handle_height" + android:src="@drawable/handle_end_level" + android:visibility="gone" + gecko:handleType="end"/> - <org.libreoffice.TextCursorView android:id="@+id/text_cursor_view" - android:layout_width="fill_parent" - android:layout_height="fill_parent"/> + <org.libreoffice.overlay.TextCursorView + android:id="@+id/text_cursor_view" + android:layout_width="fill_parent" + android:layout_height="fill_parent"/> </merge> |