Initial Upload

This commit is contained in:
admin
2020-05-02 20:35:54 -04:00
parent dba0798858
commit 0681cfaa52
256 changed files with 8948 additions and 0 deletions

View File

@@ -0,0 +1,59 @@
<?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=".HomeActivity">
<ImageView
android:id="@+id/imageView3"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#4942B7" />
<TextView
android:id="@+id/textView5"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:gravity="center"
android:text="This app is for educational and informative purposes only, this is not intended to harm anyone nor is it indended to spread misinformation. For more information, please go to reputable sources such as WHO and JHU for further information regarding sensitive topics such as these."
android:textColor="#ffffff"
android:textSize="25dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.487"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="0.302"
app:layout_constraintWidth_percent=".90" />
<Button
android:id="@+id/magicbtn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="I Understand"
app:layout_constraintBottom_toBottomOf="@+id/imageView3"
app:layout_constraintEnd_toStartOf="@+id/imageView3"
app:layout_constraintStart_toEndOf="@+id/imageView3"
app:layout_constraintTop_toBottomOf="@+id/textView5" />
<ImageView
android:layout_width="0dp"
android:layout_height="0dp"
android:background="@drawable/virus"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintHeight_percent=".12"
app:layout_constraintWidth_percent=".20"/>
<ImageView
android:layout_width="0dp"
android:layout_height="0dp"
android:background="@drawable/virus"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toTopOf="@+id/imageView3"
app:layout_constraintHeight_percent=".12"
app:layout_constraintWidth_percent=".20"/>
</androidx.constraintlayout.widget.ConstraintLayout>