44 lines
1.4 KiB
XML
44 lines
1.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical"
|
|
tools:context=".ui.MainActivity">
|
|
|
|
<androidx.coordinatorlayout.widget.CoordinatorLayout
|
|
android:layout_width="match_parent"
|
|
android:id="@+id/coordinator"
|
|
android:layout_height="0dp"
|
|
android:layout_weight="1">
|
|
|
|
<net.osmand.telegram.ui.views.LockableViewPager
|
|
android:id="@+id/view_pager"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"/>
|
|
|
|
<androidx.appcompat.widget.AppCompatImageView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="bottom"
|
|
android:scaleType="fitXY"
|
|
android:src="?attr/bottom_nav_shadow"/>
|
|
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|
|
|
|
<include
|
|
layout="@layout/bottom_buttons_bar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="@dimen/buttons_bottom_bar_height" />
|
|
|
|
<com.google.android.material.bottomnavigation.BottomNavigationView
|
|
android:id="@+id/bottom_navigation"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="?attr/card_bg_color"
|
|
app:itemBackground="?attr/card_bg_color"
|
|
app:menu="@menu/bottom_navigation_menu"/>
|
|
|
|
</LinearLayout>
|