2016-10-05 20:47:58 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2022-07-28 12:40:44 +02:00
|
|
|
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2016-10-06 20:09:24 +02:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2022-07-28 12:40:44 +02:00
|
|
|
android:id="@+id/set_wallpaper_coordinator"
|
2016-10-05 20:47:58 +02:00
|
|
|
android:layout_width="match_parent"
|
2018-07-23 21:55:17 +02:00
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
2022-07-28 12:40:44 +02:00
|
|
|
<com.google.android.material.appbar.AppBarLayout
|
|
|
|
android:id="@+id/set_wallpaper_app_bar_layout"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content">
|
|
|
|
|
|
|
|
<com.google.android.material.appbar.MaterialToolbar
|
|
|
|
android:id="@+id/set_wallpaper_toolbar"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="?attr/actionBarSize"
|
|
|
|
android:background="@color/color_primary"
|
|
|
|
app:menu="@menu/menu_set_wallpaper"
|
|
|
|
app:title="@string/simple_wallpaper"
|
|
|
|
app:titleTextAppearance="@style/AppTheme.ActionBar.TitleTextStyle" />
|
|
|
|
|
|
|
|
</com.google.android.material.appbar.AppBarLayout>
|
|
|
|
|
|
|
|
<RelativeLayout
|
|
|
|
android:id="@+id/activity_set_wallpaper_holder"
|
2018-07-23 21:55:17 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2023-01-09 21:54:43 +01:00
|
|
|
android:layout_marginTop="?attr/actionBarSize">
|
2022-07-28 12:40:44 +02:00
|
|
|
|
|
|
|
<com.theartofdev.edmodo.cropper.CropImageView
|
|
|
|
android:id="@+id/crop_image_view"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
app:cropBackgroundColor="@color/crop_image_view_background"
|
|
|
|
app:cropInitialCropWindowPaddingRatio="0" />
|
2018-07-23 21:55:17 +02:00
|
|
|
|
2022-07-28 12:40:44 +02:00
|
|
|
<include
|
|
|
|
android:id="@+id/bottom_set_wallpaper_actions"
|
|
|
|
layout="@layout/bottom_set_wallpaper_actions" />
|
2018-07-23 21:55:17 +02:00
|
|
|
|
2022-07-28 12:40:44 +02:00
|
|
|
</RelativeLayout>
|
|
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|