mirror of
https://gitlab.futo.org/videostreaming/grayjay.git
synced 2026-05-16 04:52:39 +02:00
134 lines
5.8 KiB
XML
134 lines
5.8 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical">
|
|
|
|
<FrameLayout
|
|
android:id="@+id/more_overlay"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
app:layout_constraintLeft_toLeftOf="parent"
|
|
app:layout_constraintRight_toRightOf="parent"
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
app:layout_constraintBottom_toTopOf="@id/bottom_bar_buttons"
|
|
android:orientation="vertical"
|
|
android:visibility="invisible">
|
|
|
|
<FrameLayout
|
|
android:id="@+id/more_overlay_background"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="@color/overlay"
|
|
android:alpha="0">
|
|
</FrameLayout>
|
|
|
|
<!--More Menu-->
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
|
android:id="@+id/container_more_options"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginBottom="3dp"
|
|
android:layout_marginLeft="3dp"
|
|
android:layout_marginRight="0dp"
|
|
app:layout_constraintBottom_toTopOf="@id/more_menu_buttons"
|
|
app:layout_constraintLeft_toLeftOf="parent"
|
|
app:layout_constraintRight_toRightOf="parent">
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal"
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
app:layout_constraintRight_toRightOf="parent"
|
|
android:layout_marginTop="10dp"
|
|
android:layout_marginBottom="15dp"
|
|
android:layout_marginRight="0dp"
|
|
android:gravity="center">
|
|
|
|
<LinearLayout
|
|
android:id="@+id/container_toggle_airplane"
|
|
android:layout_width="50dp"
|
|
android:layout_height="50dp"
|
|
android:background="@drawable/background_menu_toggle"
|
|
android:layout_marginRight="3dp"
|
|
android:layout_marginLeft="3dp"
|
|
android:gravity="center">
|
|
<ImageView
|
|
android:layout_width="30dp"
|
|
android:layout_height="30dp"
|
|
android:src="@drawable/ic_flight" />
|
|
</LinearLayout>
|
|
|
|
<LinearLayout
|
|
android:id="@+id/container_toggle_privacy"
|
|
android:layout_width="50dp"
|
|
android:layout_height="50dp"
|
|
android:background="@drawable/background_menu_toggle"
|
|
android:layout_marginRight="3dp"
|
|
android:layout_marginLeft="3dp"
|
|
android:gravity="center">
|
|
<ImageView
|
|
android:layout_width="30dp"
|
|
android:layout_height="30dp"
|
|
android:src="@drawable/incognito" />
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|
|
|
|
<LinearLayout
|
|
android:id="@+id/button_close"
|
|
android:layout_width="50dp"
|
|
android:layout_height="50dp"
|
|
android:layout_marginRight="0dp"
|
|
app:layout_constraintRight_toRightOf="parent"
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
android:layout_marginTop="10dp"
|
|
android:gravity="center">
|
|
<ImageView
|
|
android:layout_width="30dp"
|
|
android:layout_height="30dp"
|
|
android:src="@drawable/ic_close" />
|
|
</LinearLayout>
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
android:id="@+id/more_menu_buttons"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:layout_gravity="bottom|end"
|
|
android:layout_marginTop="10dp"
|
|
android:layout_marginBottom="5dp"
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
app:layout_constraintLeft_toLeftOf="parent"
|
|
app:layout_constraintRight_toRightOf="parent"
|
|
android:layoutDirection="rtl"
|
|
|
|
android:gravity="end">
|
|
</androidx.recyclerview.widget.RecyclerView>
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
|
</FrameLayout>
|
|
|
|
<LinearLayout
|
|
android:id="@+id/bottom_bar_buttons"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="52dp"
|
|
app:layout_constraintLeft_toLeftOf="parent"
|
|
app:layout_constraintRight_toRightOf="parent"
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
android:background="@drawable/bottom_menu_border"
|
|
android:gravity="center_vertical"
|
|
android:orientation="horizontal">
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout> |