Created
January 10, 2017 22:21
-
-
Save JakeSteam/25e82a6527be4061294e0636ecf3dbf9 to your computer and use it in GitHub Desktop.
"Android: Asynchronous Database ORM Install" snippets for GameDevAlgorithms
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
<RelativeLayout | |
android:id="@+id/progressWrapper" | |
android:layout_width="match_parent" | |
android:layout_height="wrap_content" | |
android:layout_below="@id/mainLogo"> | |
<uk.co.jakelee.cityflow.components.TextViewFont | |
android:id="@+id/progressText" | |
android:layout_width="match_parent" | |
android:layout_height="wrap_content" | |
android:gravity="center_horizontal" | |
android:padding="20dp" | |
android:textColor="@color/black" | |
android:textSize="40sp" /> | |
<ProgressBar | |
android:id="@+id/progressBar" | |
style="?android:attr/progressBarStyleHorizontal" | |
android:layout_width="match_parent" | |
android:layout_height="40dp" | |
android:layout_below="@id/progressText" | |
android:layout_margin="30dp" | |
android:indeterminate="false" | |
android:max="100" /> | |
</RelativeLayout> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment