Files
adif-api-reverse-engineering/apk_decompiled/resources/res/layout/picture_bottom_sheet.xml

33 lines
1.4 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:background="@color/black"
android:layout_width="match_parent"
android:layout_height="match_parent">
<androidx.appcompat.widget.AppCompatButton
android:textSize="18sp"
android:textColor="@color/white"
android:id="@+id/bottom_sheet_gallery"
android:background="@color/darkLight"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/action_pick_from_gallery"
android:textAllCaps="false"
android:fontFamily="@font/open_sans_semi_bold"
style="?android:attr/borderlessButtonStyle"/>
<Space
android:layout_width="wrap_content"
android:layout_height="@dimen/default_vertical_padding"/>
<androidx.appcompat.widget.AppCompatButton
android:textSize="18dp"
android:textColor="@color/white"
android:id="@+id/bottom_sheet_camera"
android:background="@color/darkLight"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/action_take_picture"
android:textAllCaps="false"
android:fontFamily="@font/open_sans_semi_bold"
style="?android:attr/borderlessButtonStyle"/>
</LinearLayout>