android_id/app/src/main/res/layout/activity_main.xml

18 lines
585 B
XML
Raw Normal View History

2023-08-14 01:06:53 +00:00
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
2023-11-06 00:25:23 +00:00
android:layout_height="match_parent"
android:paddingTop="8dp"
android:paddingBottom="8dp"
2024-04-27 08:37:03 +00:00
android:orientation="horizontal"
android:keepScreenOn="true"
android:noHistory="true"
android:screenOrientation="landscape">
2024-04-16 15:24:47 +00:00
2024-04-27 08:37:03 +00:00
<ListView
android:id="@+id/gameList"
2024-04-16 15:24:47 +00:00
android:layout_width="match_parent"
2024-04-27 08:37:03 +00:00
android:layout_height="match_parent"
android:textColor="@color/white" />
2024-04-16 15:24:47 +00:00
2023-08-14 01:06:53 +00:00
</RelativeLayout>