aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/view_keywords.xml
diff options
context:
space:
mode:
authorAllan Wang <me@allanwang.ca>2018-12-23 20:04:08 -0500
committerGitHub <noreply@github.com>2018-12-23 20:04:08 -0500
commit88b40736874a876576e1dc6c49c299fdfeb600bb (patch)
tree2f73204e2d089e3a4a734643a33c27f9b9921f52 /app/src/main/res/layout/view_keywords.xml
parent813be84a518ca39bba91b26b43b3db56a9d186c7 (diff)
downloadfrost-88b40736874a876576e1dc6c49c299fdfeb600bb.tar.gz
frost-88b40736874a876576e1dc6c49c299fdfeb600bb.tar.bz2
frost-88b40736874a876576e1dc6c49c299fdfeb600bb.zip
Migrate to androidx (#1257)
* Initial migration * Update gradle wrapper * Update iconics and revert progressanimator api * Clean up imports * Update dependencies and address some lint issues * Update constants * Remove extra import
Diffstat (limited to 'app/src/main/res/layout/view_keywords.xml')
-rw-r--r--app/src/main/res/layout/view_keywords.xml8
1 files changed, 4 insertions, 4 deletions
diff --git a/app/src/main/res/layout/view_keywords.xml b/app/src/main/res/layout/view_keywords.xml
index 88498826..21b06dff 100644
--- a/app/src/main/res/layout/view_keywords.xml
+++ b/app/src/main/res/layout/view_keywords.xml
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
-<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
+<androidx.constraintlayout.widget.ConstraintLayout 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="wrap_content"
@@ -7,7 +7,7 @@
android:paddingEnd="@dimen/kau_dialog_margin"
android:paddingStart="@dimen/kau_dialog_margin">
- <android.support.v7.widget.AppCompatEditText
+ <androidx.appcompat.widget.AppCompatEditText
android:id="@+id/edit_text"
android:layout_width="0dp"
android:layout_height="48dp"
@@ -31,7 +31,7 @@
app:layout_constraintStart_toEndOf="@id/edit_text"
app:layout_constraintTop_toTopOf="parent" />
- <android.support.v7.widget.RecyclerView
+ <androidx.recyclerview.widget.RecyclerView
android:id="@+id/recycler"
android:layout_width="0dp"
android:layout_height="0dp"
@@ -41,4 +41,4 @@
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/edit_text" />
-</android.support.constraint.ConstraintLayout> \ No newline at end of file
+</androidx.constraintlayout.widget.ConstraintLayout> \ No newline at end of file