47 lines
1.4 KiB
XML
47 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">
|
|
|
|
<FrameLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:layout_weight="1">
|
|
|
|
<android.support.v7.widget.RecyclerView
|
|
android:id="@+id/groups_view"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:scrollbars="vertical"
|
|
android:visibility="gone"/>
|
|
|
|
<net.osmand.telegram.ui.views.LockableViewPager
|
|
android:id="@+id/view_pager"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:visibility="visible"/>
|
|
|
|
<android.support.v7.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"/>
|
|
|
|
</FrameLayout>
|
|
|
|
<android.support.design.widget.BottomNavigationView
|
|
android:id="@+id/bottom_navigation"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="?attr/card_bg_color"
|
|
android:visibility="visible"
|
|
app:itemBackground="?attr/card_bg_color"
|
|
app:menu="@menu/bottom_navigation_menu"/>
|
|
|
|
</LinearLayout>
|