2018-06-05 21:51:08 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2018-06-19 15:00:13 +02:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2018-06-17 23:08:29 +02:00
|
|
|
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"
|
2018-06-19 15:00:13 +02:00
|
|
|
android:orientation="vertical"
|
2018-06-17 23:08:29 +02:00
|
|
|
tools:context=".MainActivity">
|
|
|
|
|
2018-06-19 15:00:13 +02:00
|
|
|
<FrameLayout
|
2018-06-17 23:08:29 +02:00
|
|
|
android:layout_width="match_parent"
|
2018-06-19 15:00:13 +02:00
|
|
|
android:layout_height="0dp"
|
|
|
|
android:layout_weight="1">
|
2018-06-17 23:08:29 +02:00
|
|
|
|
|
|
|
<android.support.v7.widget.RecyclerView
|
|
|
|
android:id="@+id/groups_view"
|
|
|
|
android:layout_width="match_parent"
|
2018-06-19 15:00:13 +02:00
|
|
|
android:layout_height="match_parent"
|
2018-06-17 23:08:29 +02:00
|
|
|
android:scrollbars="vertical" />
|
|
|
|
|
2018-06-19 15:00:13 +02:00
|
|
|
<net.osmand.telegram.views.LockableViewPager
|
|
|
|
android:id="@+id/pager"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:visibility="gone" />
|
|
|
|
|
|
|
|
<android.support.v7.widget.AppCompatImageView
|
2018-06-17 23:08:29 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2018-06-19 15:00:13 +02:00
|
|
|
android:layout_gravity="bottom"
|
|
|
|
android:scaleType="fitXY"
|
|
|
|
android:src="?attr/bottom_nav_shadow" />
|
2018-06-17 23:08:29 +02:00
|
|
|
|
2018-06-19 15:00:13 +02:00
|
|
|
</FrameLayout>
|
|
|
|
|
|
|
|
<android.support.design.widget.BottomNavigationView
|
|
|
|
android:id="@+id/bottom_navigation"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:visibility="visible"
|
|
|
|
app:itemBackground="?attr/bg_color"
|
|
|
|
app:menu="@menu/bottom_navigation_menu"
|
|
|
|
tools:itemIconTint="@color/ctrl_active_color_light"
|
|
|
|
tools:itemTextColor="@color/ctrl_active_color_light"
|
|
|
|
tools:visibility="visible" />
|
2018-06-17 23:08:29 +02:00
|
|
|
|
2018-06-19 15:00:13 +02:00
|
|
|
</LinearLayout>
|