LibGDX Update

This commit is contained in:
Anthony Calosa
2024-08-04 12:47:39 +08:00
parent 7d1e9a4c64
commit 2cd3347429
50 changed files with 658 additions and 288 deletions

View File

@@ -1,7 +1,38 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/mainview"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
android:background="@color/splashBackground">
</LinearLayout>
<ImageView
android:id="@+id/logo_id"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:maxHeight="400dp"
android:adjustViewBounds="true"
android:layout_gravity="center_horizontal"
android:src="@drawable/logo"/>
<ProgressBar
style="?android:attr/progressBarStyleHorizontal"
android:id="@+id/pBar"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:max="100"
android:progress="0"
android:minWidth="400dp"
android:layout_marginTop="20dp"
android:layout_gravity="center_horizontal"
android:layout_below="@+id/logo_id"/>
<TextView
android:id="@+id/pText"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="20dp"
android:layout_alignLeft="@+id/pBar"
android:layout_gravity="center_horizontal"
android:layout_below="@+id/pBar"/>
</RelativeLayout>

View File

@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
android:background="@color/splashBackground">
</RelativeLayout>