Skip to content

Instantly share code, notes, and snippets.

@JakeSteam
Created January 10, 2017 22:21
Show Gist options
  • Save JakeSteam/25e82a6527be4061294e0636ecf3dbf9 to your computer and use it in GitHub Desktop.
Save JakeSteam/25e82a6527be4061294e0636ecf3dbf9 to your computer and use it in GitHub Desktop.
"Android: Asynchronous Database ORM Install" snippets for GameDevAlgorithms
<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