That fuck shit the fascists are using
at master 99 lines 4.5 kB view raw
1<?xml version="1.0" encoding="utf-8"?> 2<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" 3 xmlns:app="http://schemas.android.com/apk/res-auto" 4 tools:viewBindingIgnore="true" 5 xmlns:tools="http://schemas.android.com/tools" 6 android:layout_width="match_parent" 7 android:layout_height="match_parent"> 8 9 <org.tm.archive.mediasend.CameraButtonView 10 android:id="@+id/camera_capture_button" 11 android:layout_width="@dimen/camera_capture_button_size" 12 android:layout_height="@dimen/camera_capture_button_size" 13 android:contentDescription="@string/CameraXFragment_capture_description" 14 app:imageCaptureSize="@dimen/camera_capture_image_button_size" 15 app:layout_constraintBottom_toBottomOf="parent" 16 app:layout_constraintEnd_toEndOf="parent" 17 app:layout_constraintStart_toStartOf="parent" 18 app:recordSize="54dp" /> 19 20 <org.tm.archive.mediasend.camerax.CameraXFlashToggleView 21 android:id="@+id/camera_flash_button" 22 android:layout_width="36dp" 23 android:layout_height="36dp" 24 android:layout_marginTop="14dp" 25 android:layout_marginEnd="16dp" 26 android:background="@drawable/circle_transparent_black_40" 27 android:padding="6dp" 28 android:scaleType="fitCenter" 29 android:src="@drawable/camerax_flash_toggle" 30 android:tint="@color/core_white" 31 app:layout_constraintEnd_toEndOf="parent" 32 app:layout_constraintTop_toTopOf="parent" /> 33 34 <androidx.appcompat.widget.AppCompatImageButton 35 android:id="@+id/camera_flip_button" 36 android:layout_width="52dp" 37 android:layout_height="52dp" 38 android:layout_marginStart="40dp" 39 android:layout_marginBottom="36dp" 40 android:background="@drawable/media_selection_camera_switch_background" 41 android:contentDescription="@string/CameraXFragment_change_camera_description" 42 android:scaleType="centerInside" 43 android:visibility="gone" 44 android:tint="@color/core_white" 45 app:layout_constraintBottom_toBottomOf="parent" 46 app:layout_constraintStart_toStartOf="parent" 47 app:srcCompat="@drawable/symbol_switch_24" 48 tools:visibility="visible" /> 49 50 <FrameLayout 51 android:id="@+id/camera_gallery_button_background" 52 android:layout_width="wrap_content" 53 android:layout_height="wrap_content" 54 android:layout_marginEnd="40dp" 55 android:layout_marginBottom="36dp" 56 android:background="@drawable/circle_tintable" 57 app:layout_constraintBottom_toBottomOf="parent" 58 app:layout_constraintEnd_toEndOf="parent"> 59 60 <com.google.android.material.imageview.ShapeableImageView 61 android:id="@+id/camera_gallery_button" 62 android:layout_width="52dp" 63 android:layout_height="52dp" 64 android:contentDescription="@string/CameraXFragment_open_gallery_description" 65 android:padding="2dp" 66 android:scaleType="centerCrop" 67 app:shapeAppearanceOverlay="@style/ShapeAppearanceOverlay.Signal.Circle" 68 tools:src="@color/black" /> 69 70 </FrameLayout> 71 72 <org.tm.archive.mediasend.v2.MediaCountIndicatorButton 73 android:id="@+id/camera_review_button" 74 android:layout_width="wrap_content" 75 android:layout_height="wrap_content" 76 android:layout_marginEnd="40dp" 77 android:background="@drawable/v2_media_count_indicator_background" 78 android:minHeight="44dp" 79 android:visibility="gone" 80 android:contentDescription="@string/CameraControls_continue_button_accessibility_label" 81 app:layout_constraintBottom_toBottomOf="@id/camera_capture_button" 82 app:layout_constraintEnd_toEndOf="parent" 83 app:layout_constraintTop_toTopOf="@id/camera_capture_button" 84 tools:visibility="visible" /> 85 86 <View 87 android:id="@+id/camera_selfie_flash" 88 android:layout_width="0dp" 89 android:layout_height="0dp" 90 android:alpha="0" 91 android:background="@color/white" 92 android:contentDescription="@string/CameraControls_capture_button_accessibility_label" 93 app:layout_constraintBottom_toBottomOf="parent" 94 app:layout_constraintEnd_toEndOf="parent" 95 app:layout_constraintStart_toStartOf="parent" 96 app:layout_constraintTop_toTopOf="parent" /> 97 98</androidx.constraintlayout.widget.ConstraintLayout> 99