0% found this document useful (0 votes)
18 views

Package Java

This document contains the code for a splash screen layout in an Android application. It includes two text views - one for the loading text and one for the app name at the bottom. It also includes a progress bar centered below the loading text to indicate app loading progress. The text views and progress bar are placed within a relative layout with backgrounds and colors defined.

Uploaded by

alfinafebri
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
18 views

Package Java

This document contains the code for a splash screen layout in an Android application. It includes two text views - one for the loading text and one for the app name at the bottom. It also includes a progress bar centered below the loading text to indicate app loading progress. The text views and progress bar are placed within a relative layout with backgrounds and colors defined.

Uploaded by

alfinafebri
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 1

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="fill_parent" android:layout_height="fill_parent" android:background="@drawable/bchiffon" tools:context=".

Splashscreen" > <TextView android:id="@+id/textView1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignParentTop="true" android:layout_alignRight="@+id/progressBar1" android:layout_marginRight="27dp" android:layout_marginTop="64dp" android:text="Loading..." android:textColor="#00008B" android:textStyle="bold" android:textAppearance="?android:attr/textAppearanceLarge" />

<TextView android:id="@+id/textView2" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_alignParentBottom="true" android:layout_alignParentLeft="true" android:background="@drawable/123" android:text="Hijab Style" android:gravity="center" android:textSize="60px" android:textStyle="bold" android:textAppearance="?android:attr/textAppearanceLarge" android:textColor="#00008B" /> <ProgressBar android:id="@+id/progressBar1" style="?android:attr/progressBarStyleLarge" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_below="@+id/textView1" android:layout_centerHorizontal="true" android:layout_marginTop="57dp" /> </RelativeLayout>

You might also like