emotionhero/app/src/main/res/layout/activity_gaming.xml

51 lines
1.6 KiB
XML
Raw Normal View History

2016-08-16 19:25:28 +02:00
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/colorPrimary"
2016-08-19 18:07:14 +02:00
android:keepScreenOn="true"
2016-08-16 19:25:28 +02:00
tools:context="com.rubenvandeven.emotionhero.GamingActivity">
<!-- The primary full-screen view. This can be replaced with whatever view
is needed to present your content, e.g. VideoView, SurfaceView,
TextureView, etc. -->
<RelativeLayout
android:id="@+id/video_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1">
</RelativeLayout>
<TextView
android:id="@+id/fullscreen_content"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
android:keepScreenOn="true"
android:text="@string/dummy_content"
android:textColor="#ffffff"
android:textSize="50sp"
2016-08-19 20:56:58 +02:00
android:textStyle="bold"
2016-09-09 14:00:41 +02:00
android:paddingBottom="100dp" />
2016-08-16 19:25:28 +02:00
2016-08-17 19:21:16 +02:00
2016-08-16 19:25:28 +02:00
<FrameLayout
android:id="@+id/ending_layout"
2016-08-16 19:25:28 +02:00
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true">
<TextView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/highscores"
android:textColor="@color/highscore"
android:textSize="30sp"
android:visibility="gone"
/>
2016-08-16 19:25:28 +02:00
</FrameLayout>
</FrameLayout>