Project

General

Profile

Download (973 Bytes) Statistics
| Branch: | Tag: | Revision:

magiccube / src / main / res / layout / dialog_tabbed.xml @ 44bdd3fb

1
<?xml version="1.0" encoding="utf-8"?>
2
<LinearLayout
3

    
4
    xmlns:android="http://schemas.android.com/apk/res/android"
5
    xmlns:app="http://schemas.android.com/apk/res-auto"
6

    
7
    android:layout_width="match_parent"
8
    android:layout_height="match_parent"
9
    android:layout_weight="1"
10
    android:orientation="vertical">
11

    
12
    <com.google.android.material.tabs.TabLayout
13
        android:id="@+id/sliding_tabs"
14
        android:layout_width="wrap_content"
15
        android:layout_height="wrap_content"
16
        android:theme="@style/Theme.AppCompat.NoActionBar"
17
        app:tabMode="scrollable"
18
        app:tabMinWidth="20dp"
19
        app:tabGravity="fill"
20
        >
21
    </com.google.android.material.tabs.TabLayout>
22

    
23
    <androidx.viewpager.widget.ViewPager
24
        android:id="@+id/viewpager"
25
        android:layout_width="match_parent"
26
        android:layout_height="0dp"
27
        android:layout_weight="1"
28
        android:background="@android:color/black" />
29

    
30
</LinearLayout>
(16-16/21)