Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
"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