2016-12-08 22:20:38 +00:00
|
|
|
<?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"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
2020-08-19 00:06:26 +00:00
|
|
|
<com.google.android.material.tabs.TabLayout
|
2019-04-17 14:21:30 +00:00
|
|
|
android:id="@+id/camera_sticker_tabs"
|
2016-12-08 22:20:38 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2019-03-21 17:47:59 +00:00
|
|
|
app:tabBackground="@color/core_grey_90"
|
2016-12-08 22:20:38 +00:00
|
|
|
app:tabMode="fixed"/>
|
|
|
|
|
2020-08-19 00:06:26 +00:00
|
|
|
<androidx.viewpager.widget.ViewPager
|
2019-04-17 14:21:30 +00:00
|
|
|
android:id="@+id/camera_sticker_pager"
|
2016-12-08 22:20:38 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="0px"
|
2019-03-21 17:47:59 +00:00
|
|
|
android:layout_weight="1" />
|
2016-12-08 22:20:38 +00:00
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|