Files
arcanechat-android/res/layout/activity_select_chat_background.xml
T

45 lines
1.5 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/layout_container"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:id="@+id/preview"
android:scaleType="centerCrop"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:layout_gravity="bottom">
<Button
style="@style/ButtonPrimary"
android:id="@+id/set_default_button"
android:layout_weight="1"
android:layout_gravity="fill_vertical"
android:layout_width="wrap_content"
android:layout_height="40dp"
android:layout_marginStart="15dp"
android:layout_marginLeft="15dp"
android:layout_marginBottom="15dp"
android:text="Set default" />
<Button
style="@style/ButtonPrimary"
android:id="@+id/from_gallery_button"
android:layout_weight="1"
android:layout_gravity="fill_vertical"
android:layout_width="wrap_content"
android:layout_height="40dp"
android:layout_marginLeft="15dp"
android:layout_marginRight="15dp"
android:layout_marginBottom="15dp"
android:text="From gallery" />
</LinearLayout>
</FrameLayout>