105 lines
3.5 KiB
XML
105 lines
3.5 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical">
|
|
|
|
<FrameLayout
|
|
android:id="@+id/wrapper_controls"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="@dimen/ucrop_height_wrapper_controls"
|
|
android:layout_alignParentTop="true"
|
|
android:layout_marginBottom="0dp">
|
|
|
|
<ImageView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="@drawable/ucrop_wrapper_controls_shape" />
|
|
|
|
<LinearLayout
|
|
android:id="@+id/layout_aspect_ratio"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:gravity="center"
|
|
android:orientation="horizontal" />
|
|
|
|
<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:id="@+id/controls_shadow"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="8dp"
|
|
android:layout_alignBottom="@+id/wrapper_controls"
|
|
android:src="@drawable/ucrop_shadow_upside" />
|
|
|
|
<LinearLayout
|
|
android:id="@+id/wrapper_states"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="@dimen/ucrop_height_wrapper_states"
|
|
android:layout_below="@+id/controls_shadow"
|
|
android:background="@color/ucrop_color_widget_background"
|
|
android:baselineAligned="false"
|
|
android:gravity="center"
|
|
android:orientation="horizontal">
|
|
|
|
<LinearLayout
|
|
android:id="@+id/state_aspect_ratio"
|
|
style="@style/ucrop_WrapperIconState">
|
|
|
|
<ImageView
|
|
android:id="@+id/image_view_state_aspect_ratio"
|
|
style="@style/ucrop_ImageViewWidgetIcon"
|
|
android:gravity="center"
|
|
android:orientation="vertical"
|
|
app:srcCompat="@drawable/ucrop_crop" />
|
|
|
|
<TextView
|
|
android:id="@+id/text_view_crop"
|
|
style="@style/ucrop_TextViewWidget"
|
|
android:text="@string/ucrop_crop" />
|
|
|
|
</LinearLayout>
|
|
|
|
<LinearLayout
|
|
android:id="@+id/state_rotate"
|
|
style="@style/ucrop_WrapperIconState">
|
|
|
|
<ImageView
|
|
android:id="@+id/image_view_state_rotate"
|
|
style="@style/ucrop_ImageViewWidgetIcon"
|
|
app:srcCompat="@drawable/ucrop_rotate" />
|
|
|
|
<TextView
|
|
android:id="@+id/text_view_rotate"
|
|
style="@style/ucrop_TextViewWidget"
|
|
android:text="@string/ucrop_rotate" />
|
|
|
|
</LinearLayout>
|
|
|
|
<LinearLayout
|
|
android:id="@+id/state_scale"
|
|
style="@style/ucrop_WrapperIconState">
|
|
|
|
<ImageView
|
|
android:id="@+id/image_view_state_scale"
|
|
style="@style/ucrop_ImageViewWidgetIcon"
|
|
app:srcCompat="@drawable/ucrop_scale" />
|
|
|
|
<TextView
|
|
android:id="@+id/text_view_scale"
|
|
style="@style/ucrop_TextViewWidget"
|
|
android:text="@string/ucrop_scale" />
|
|
|
|
</LinearLayout>
|
|
</LinearLayout>
|
|
</RelativeLayout>
|