annotate app/src/main/res/layout/activity_picking_songs.xml @ 1:bae640f518e4

Adding auto generated project files, plus Activity code
author kshalle
date Mon, 20 Apr 2015 17:11:10 +0300
parents
children
rev   line source
kshalle@1 1 <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
kshalle@1 2 xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent"
kshalle@1 3 android:layout_height="match_parent" android:background="#0099cc" tools:context=".PickingSongs">
kshalle@1 4
kshalle@1 5 <!-- The primary full-screen view. This can be replaced with whatever view
kshalle@1 6 is needed to present your content, e.g. VideoView, SurfaceView,
kshalle@1 7 TextureView, etc. -->
kshalle@1 8 <TextView android:id="@+id/fullscreen_content" android:layout_width="match_parent"
kshalle@1 9 android:layout_height="match_parent" android:keepScreenOn="true" android:textColor="#33b5e5"
kshalle@1 10 android:textStyle="bold" android:textSize="50sp" android:gravity="center"
kshalle@1 11 android:text="@string/dummy_content" />
kshalle@1 12
kshalle@1 13 <!-- This FrameLayout insets its children based on system windows using
kshalle@1 14 android:fitsSystemWindows. -->
kshalle@1 15 <FrameLayout android:layout_width="match_parent" android:layout_height="match_parent"
kshalle@1 16 android:fitsSystemWindows="true">
kshalle@1 17
kshalle@1 18 <LinearLayout android:id="@+id/fullscreen_content_controls" style="?metaButtonBarStyle"
kshalle@1 19 android:layout_width="match_parent" android:layout_height="wrap_content"
kshalle@1 20 android:layout_gravity="bottom|center_horizontal"
kshalle@1 21 android:background="@color/black_overlay" android:orientation="horizontal"
kshalle@1 22 tools:ignore="UselessParent">
kshalle@1 23
kshalle@1 24 <Button android:id="@+id/dummy_button" style="?metaButtonBarButtonStyle"
kshalle@1 25 android:layout_width="0dp" android:layout_height="wrap_content"
kshalle@1 26 android:layout_weight="1" android:text="@string/dummy_button" />
kshalle@1 27
kshalle@1 28 </LinearLayout>
kshalle@1 29 </FrameLayout>
kshalle@1 30
kshalle@1 31 </FrameLayout>