45 lines
1.5 KiB
XML
45 lines
1.5 KiB
XML
<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="#0099cc"
|
|
tools:context=".ringtone.RingtoneActivity">
|
|
|
|
<!-- The primary full-screen view. This can be replaced with whatever view
|
|
is needed to present your content, e.g. VideoView, SurfaceView,
|
|
TextureView, etc. -->
|
|
<TextView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:gravity="center"
|
|
android:keepScreenOn="true"
|
|
android:text="@string/dummy_content"
|
|
android:textColor="#33b5e5"
|
|
android:textSize="50sp"
|
|
android:textStyle="bold"/>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal"
|
|
android:layout_gravity="bottom"
|
|
android:padding="4dp">
|
|
|
|
<Button
|
|
android:id="@+id/btn_snooze"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:text="Snooze"/>
|
|
|
|
<Button
|
|
android:id="@+id/btn_dismiss"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:text="Dismiss"/>
|
|
|
|
</LinearLayout>
|
|
|
|
</FrameLayout>
|