aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/fragment_first.xml
diff options
context:
space:
mode:
authorClyhtsuriva <aimeric@adjutor.xyz>2021-02-12 11:26:07 +0100
committerClyhtsuriva <aimeric@adjutor.xyz>2021-02-12 11:26:07 +0100
commit416450b33960588984d88659d596703e84c8c2d5 (patch)
tree86775e66f9372fb2c557a086478cdddc1df12780 /app/src/main/res/layout/fragment_first.xml
parent3decfd9d0d043c710f48cc145027a7b6bd45df8f (diff)
Renaming.
Diffstat (limited to 'app/src/main/res/layout/fragment_first.xml')
-rw-r--r--app/src/main/res/layout/fragment_first.xml58
1 files changed, 0 insertions, 58 deletions
diff --git a/app/src/main/res/layout/fragment_first.xml b/app/src/main/res/layout/fragment_first.xml
deleted file mode 100644
index 46033be..0000000
--- a/app/src/main/res/layout/fragment_first.xml
+++ /dev/null
@@ -1,58 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:app="http://schemas.android.com/apk/res-auto"
- xmlns:tools="http://schemas.android.com/tools"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- tools:context=".FirstFragment"
- android:background="@color/very_dark_purple"
- >
-
- <TextView
- android:id="@+id/title"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:background="@color/black"
- android:fontFamily="@font/bangers"
- android:text="@string/app_name"
- android:textAlignment="center"
- android:textColor="@color/strong_pink"
- android:textSize="40sp"
- app:layout_constraintBottom_toTopOf="@id/news"
- app:layout_constraintTop_toTopOf="parent"
- />
-
- <Button
- android:id="@+id/news"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="@string/news"
- app:layout_constraintTop_toBottomOf="@id/title"
- app:layout_constraintBottom_toBottomOf="parent"
- app:layout_constraintStart_toStartOf="parent"
- app:layout_constraintEnd_toStartOf="@id/article"
- />
-
- <Button
- android:id="@+id/article"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="@string/article"
- app:layout_constraintTop_toBottomOf="@id/title"
- app:layout_constraintBottom_toBottomOf="parent"
- app:layout_constraintStart_toEndOf="@id/news"
- app:layout_constraintEnd_toStartOf="@id/top_manga"
- />
-
- <Button
- android:id="@+id/top_manga"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="@string/top_manga"
- app:layout_constraintTop_toBottomOf="@id/title"
- app:layout_constraintBottom_toBottomOf="parent"
- app:layout_constraintStart_toEndOf="@id/article"
- app:layout_constraintEnd_toEndOf="parent"
- />
-
-</androidx.constraintlayout.widget.ConstraintLayout> \ No newline at end of file