|
1 | 1 | <?xml version="1.0" encoding="utf-8"?>
|
2 |
| -<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android" |
| 2 | +<!-- |
| 3 | + ~ Copyright 2016-2019 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license. |
| 4 | + --> |
| 5 | + |
| 6 | +<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android" |
3 | 7 | xmlns:app="http://schemas.android.com/apk/res-auto"
|
4 | 8 | xmlns:tools="http://schemas.android.com/tools"
|
5 | 9 | android:layout_width="match_parent"
|
6 | 10 | android:layout_height="match_parent"
|
7 | 11 | tools:context="org.jetbrains.kotlinx.animation.MainActivity">
|
8 | 12 |
|
9 |
| - <android.support.design.widget.AppBarLayout |
| 13 | + <com.google.android.material.appbar.AppBarLayout |
10 | 14 | android:layout_width="match_parent"
|
11 | 15 | android:layout_height="wrap_content"
|
12 | 16 | android:theme="@style/AppTheme.AppBarOverlay">
|
13 | 17 |
|
14 |
| - <android.support.v7.widget.Toolbar |
| 18 | + <androidx.appcompat.widget.Toolbar |
15 | 19 | android:id="@+id/toolbar"
|
16 | 20 | android:layout_width="match_parent"
|
17 | 21 | android:layout_height="?attr/actionBarSize"
|
18 | 22 | android:background="?attr/colorPrimary"
|
19 | 23 | app:popupTheme="@style/AppTheme.PopupOverlay" />
|
20 | 24 |
|
21 |
| - </android.support.design.widget.AppBarLayout> |
| 25 | + </com.google.android.material.appbar.AppBarLayout> |
22 | 26 |
|
23 | 27 | <include layout="@layout/content_main" />
|
24 | 28 |
|
25 |
| - <android.support.design.widget.FloatingActionButton |
| 29 | + <com.google.android.material.floatingactionbutton.FloatingActionButton |
26 | 30 | android:id="@+id/addButton"
|
27 | 31 | android:layout_width="wrap_content"
|
28 | 32 | android:layout_height="wrap_content"
|
|
31 | 35 | app:backgroundTint="@color/colorPrimary"
|
32 | 36 | app:srcCompat="@android:drawable/ic_input_add" />
|
33 | 37 |
|
34 |
| - <android.support.design.widget.FloatingActionButton |
| 38 | + <com.google.android.material.floatingactionbutton.FloatingActionButton |
35 | 39 | android:id="@+id/removeButton"
|
36 | 40 | android:layout_width="wrap_content"
|
37 | 41 | android:layout_height="wrap_content"
|
|
40 | 44 | app:backgroundTint="@color/colorPrimary"
|
41 | 45 | app:srcCompat="@android:drawable/ic_delete" />
|
42 | 46 |
|
43 |
| -</android.support.design.widget.CoordinatorLayout> |
| 47 | +</androidx.coordinatorlayout.widget.CoordinatorLayout> |
0 commit comments