21 lines
No EOL
2.1 KiB
XML
21 lines
No EOL
2.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<merge
|
|
xmlns:android="http://schemas.android.com/apk/res/android">
|
|
<FrameLayout android:id="@id/wrapper_controls" android:background="@color/ucrop_color_widget_background" android:layout_width="fill_parent" android:layout_height="@dimen/ucrop_height_wrapper_controls" android:layout_above="@id/wrapper_states">
|
|
<LinearLayout android:gravity="center" android:orientation="horizontal" android:id="@id/layout_aspect_ratio" android:layout_width="fill_parent" android:layout_height="fill_parent" />
|
|
<include android:id="@id/layout_rotate_wheel" layout="@layout/ucrop_layout_rotate_wheel" />
|
|
<include android:id="@id/layout_scale_wheel" layout="@layout/ucrop_layout_scale_wheel" />
|
|
</FrameLayout>
|
|
<ImageView android:background="@drawable/ucrop_shadow_upside" android:layout_width="fill_parent" android:layout_height="@dimen/ucrop_height_divider_shadow" android:layout_above="@id/wrapper_states" />
|
|
<LinearLayout android:gravity="center" android:orientation="horizontal" android:id="@id/wrapper_states" android:background="@color/ucrop_color_widget_background" android:layout_width="fill_parent" android:layout_height="@dimen/ucrop_height_wrapper_states" android:baselineAligned="false" android:layout_alignParentBottom="true">
|
|
<FrameLayout android:id="@id/state_scale" style="@style/ucrop_WrapperIconState">
|
|
<ImageView android:id="@id/image_view_state_scale" android:src="@drawable/ucrop_ic_scale" style="@style/ucrop_ImageViewWidgetIcon" />
|
|
</FrameLayout>
|
|
<FrameLayout android:id="@id/state_aspect_ratio" style="@style/ucrop_WrapperIconState">
|
|
<ImageView android:id="@id/image_view_state_aspect_ratio" android:src="@drawable/ucrop_ic_crop" style="@style/ucrop_ImageViewWidgetIcon" />
|
|
</FrameLayout>
|
|
<FrameLayout android:id="@id/state_rotate" style="@style/ucrop_WrapperIconState">
|
|
<ImageView android:id="@id/image_view_state_rotate" android:src="@drawable/ucrop_ic_rotate" style="@style/ucrop_ImageViewWidgetIcon" />
|
|
</FrameLayout>
|
|
</LinearLayout>
|
|
</merge> |