mirror of
https://github.com/ArcaneChat/android.git
synced 2026-07-03 14:05:24 +02:00
27 lines
935 B
XML
27 lines
935 B
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"
|
|
>
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal"
|
|
android:layout_gravity="bottom">
|
|
<Button
|
|
android:id="@+id/set_default_button"
|
|
android:layout_width="0dp"
|
|
android:layout_weight="0.5"
|
|
android:layout_height="wrap_content"
|
|
android:text="Set default"/>
|
|
<Button
|
|
android:id="@+id/from_gallery_button"
|
|
android:layout_width="0dp"
|
|
android:layout_weight="0.5"
|
|
android:layout_height="wrap_content"
|
|
android:text="From gallery"/>
|
|
</LinearLayout>
|
|
|
|
</FrameLayout> |