34 lines
1.2 KiB
XML
34 lines
1.2 KiB
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
xmlns:tl="http://schemas.android.com/apk/res-auto"
|
||
|
xmlns:tools="http://schemas.android.com/tools"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"
|
||
|
android:background="@mipmap/bg_splash">
|
||
|
|
||
|
<ImageView
|
||
|
android:layout_width="176dp"
|
||
|
android:layout_height="40dp"
|
||
|
android:layout_alignParentBottom="true"
|
||
|
android:layout_centerHorizontal="true"
|
||
|
android:layout_marginBottom="32dp"
|
||
|
android:src="@mipmap/ic_slogon" />
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/txt_timer_splash"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_alignParentRight="true"
|
||
|
android:layout_marginTop="@dimen/margin_big"
|
||
|
android:layout_marginRight="15dp"
|
||
|
android:background="@drawable/container_timer_selector"
|
||
|
android:paddingLeft="15dp"
|
||
|
android:paddingTop="4dp"
|
||
|
android:paddingRight="15dp"
|
||
|
android:paddingBottom="4dp"
|
||
|
android:textColor="@color/white"
|
||
|
android:textSize="@dimen/font_size_small"
|
||
|
android:visibility="visible" />
|
||
|
|
||
|
|
||
|
</RelativeLayout>
|