Project

General

Profile

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

magiccube / src / main / res / layout / dialog_tabbed.xml @ 66e777b0

1 fdec60a3 Leszek Koltunski
<?xml version="1.0" encoding="utf-8"?>
2
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3
    android:layout_width="match_parent"
4
    android:layout_height="match_parent"
5
    android:layout_weight="1"
6
    android:orientation="vertical" >
7
8 66e777b0 Leszek Koltunski
    <com.google.android.material.tabs.TabLayout
9 fdec60a3 Leszek Koltunski
        android:id="@+id/sliding_tabs"
10
        android:layout_width="match_parent"
11
        android:layout_height="32dp"
12
        android:theme="@style/Theme.AppCompat.NoActionBar">
13 66e777b0 Leszek Koltunski
    </com.google.android.material.tabs.TabLayout>
14 fdec60a3 Leszek Koltunski
15 66e777b0 Leszek Koltunski
    <androidx.viewpager.widget.ViewPager
16 fdec60a3 Leszek Koltunski
        android:id="@+id/viewpager"
17
        android:layout_width="match_parent"
18
        android:layout_height="0dp"
19
        android:layout_weight="1"
20
        android:background="@android:color/black" />
21
22
</LinearLayout>