Commit 41c18b67 authored by Ankita Tiwari's avatar Ankita Tiwari
Browse files

Merge branch 'top-secret' into 'master'

THE GRANT MERGE

See merge request ec327_projects/group7project!15
parents 98f99980 c1e9a70b
Loading
Loading
Loading
Loading
+46 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout 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"
    android:orientation="vertical"
    android:background="@color/black"
    tools:context=".SplashActivity">


    <ImageView

        android:id="@+id/logo"
        android:layout_width="300sp"
        android:layout_height="200sp"
        android:layout_centerInParent="true"
        android:layout_marginTop="10dp"
        android:padding="70dp"
        android:scaleType="centerCrop"
        android:src="@drawable/peepa_logo" />

    <ProgressBar
        android:id="@+id/power"
        android:layout_width="220dp"
        android:layout_height="20dp"
        android:layout_alignParentBottom="true"
        android:layout_centerHorizontal="true"
        style="?android:attr/progressBarStyleHorizontal"
        android:max="100"
        android:indeterminate="true"
        android:progress="0"
        android:layout_marginTop="10dp"
        />

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="PEEPA Inc."
        android:textColor="@color/white"
        android:layout_centerHorizontal="true"
        android:layout_below="@+id/logo"

        />

</RelativeLayout>
 No newline at end of file
Loading