0% found this document useful (0 votes)
27 views1 page

Android App Tools Android Android Android Tools Android Android Android Android Android Android Android Android Android

This Android XML document defines the layout for a welcome activity screen that contains a centered linear layout with a circular progress bar and text below that reads "Loading...". The background is set to a drawable named "furniture" and the progress bar and text are white.

Uploaded by

Philip Baker
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
27 views1 page

Android App Tools Android Android Android Tools Android Android Android Android Android Android Android Android Android

This Android XML document defines the layout for a welcome activity screen that contains a centered linear layout with a circular progress bar and text below that reads "Loading...". The background is set to a drawable named "furniture" and the progress bar and text are white.

Uploaded by

Philip Baker
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
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: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:background="@drawable/furniture"
tools:context=".WelcomeActivity">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:layout_centerInParent="true">
<ProgressBar
android:id="@+id/progressBar2"
style="?android:attr/progressBarStyle"
android:layout_width="80dp"
android:layout_height="80dp"
android:layout_gravity="center"
android:indeterminateTint="@android:color/white"
/>

<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Loading..."
android:textSize="18sp"
android:textColor="@android:color/white"
android:gravity="center"
/>
</LinearLayout>
</RelativeLayout>

You might also like