Created
April 6, 2019 20:10
-
-
Save therajanmaurya/f9e9a5ee0b5fcb195d6d2e62b10f0ade to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<LinearLayout | |
xmlns:android="http://schemas.android.com/apk/res/android" | |
android:gravity="center" | |
android:orientation="vertical" | |
android:background="#CCFFFFFF" | |
android:layout_width="match_parent" | |
android:layout_height="match_parent"> | |
<ProgressBar | |
android:id="@+id/progressBar" | |
android:layout_width="wrap_content" | |
android:layout_height="wrap_content"/> | |
<TextView | |
android:id="@+id/pbText" | |
android:layout_width="wrap_content" | |
android:layout_height="wrap_content" | |
android:textStyle="bold" | |
android:gravity="center" | |
android:textColor="@color/colorPrimary" | |
android:layout_marginTop="@dimen/layout_padding_8dp" | |
android:text="Please wait ..."/> | |
</LinearLayout> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Good