21 lines
749 B
XML
21 lines
749 B
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<merge xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
||
|
|
||
|
<android.support.v7.widget.Toolbar
|
||
|
android:id="@+id/toolbar"
|
||
|
style="?cpp_toolbar_style"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="?actionBarSize"
|
||
|
app:layout_scrollFlags="scroll|snap" />
|
||
|
|
||
|
<android.support.design.widget.TabLayout
|
||
|
android:id="@+id/tabs"
|
||
|
style="?cpp_toolbar_style"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:overScrollMode="never"
|
||
|
app:tabGravity="fill"
|
||
|
app:tabMaxWidth="0dp"
|
||
|
app:tabMode="fixed" />
|
||
|
</merge>
|