|
|
@@ -1,7 +1,9 @@
|
|
|
<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:layout_height="match_parent"
|
|
|
+ tools:ignore="MergeRootFrame">
|
|
|
|
|
|
<com.ivalentin.margolariak.MainLayout
|
|
|
android:id="@+id/main_layout"
|
|
|
@@ -16,7 +18,8 @@
|
|
|
<ScrollView
|
|
|
android:layout_width="wrap_content"
|
|
|
android:layout_height="fill_parent"
|
|
|
- android:nestedScrollingEnabled="false">
|
|
|
+ android:nestedScrollingEnabled="false"
|
|
|
+ tools:ignore="UnusedAttribute">
|
|
|
|
|
|
<LinearLayout
|
|
|
android:layout_width="match_parent"
|
|
|
@@ -296,20 +299,61 @@
|
|
|
|
|
|
</com.ivalentin.margolariak.MainLayout>
|
|
|
|
|
|
- <LinearLayout
|
|
|
+ <RelativeLayout
|
|
|
android:orientation="vertical"
|
|
|
android:layout_width="match_parent"
|
|
|
android:layout_height="match_parent"
|
|
|
android:background="#003377"
|
|
|
android:alpha=".85"
|
|
|
- android:id="@+id/ll_tutorial"
|
|
|
+ android:id="@+id/rl_tutorial"
|
|
|
android:visibility="gone">
|
|
|
|
|
|
<ImageView
|
|
|
+ android:layout_width="90dp"
|
|
|
+ android:layout_height="90dp"
|
|
|
+ android:src="@drawable/tutorial_point"
|
|
|
+ tools:ignore="ContentDescription"/>
|
|
|
+
|
|
|
+ <ImageView
|
|
|
+ android:layout_width="110dp"
|
|
|
+ android:layout_height="110dp"
|
|
|
+ android:src="@drawable/tutorial_slide"
|
|
|
+ android:layout_marginTop="110dp"
|
|
|
+ android:layout_marginLeft="-10dp"
|
|
|
+ android:layout_marginStart="-10dp"
|
|
|
+ tools:ignore="ContentDescription"/>
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:textAppearance="?android:attr/textAppearanceMedium"
|
|
|
+ android:text="@string/tutorial_menu"
|
|
|
+ android:textColor="#ffffff"
|
|
|
+ android:textStyle="bold"
|
|
|
+ android:layout_marginTop="70dp"
|
|
|
+ android:layout_marginRight="20dp"
|
|
|
+ android:layout_marginEnd="20dp"
|
|
|
+ android:layout_marginLeft="100dp"
|
|
|
+ android:layout_marginStart="100dp"/>
|
|
|
+
|
|
|
+ <ImageView
|
|
|
+ android:layout_width="90dp"
|
|
|
+ android:layout_height="90dp"
|
|
|
+ android:id="@+id/iv_tutorial_content"
|
|
|
+ android:src="@drawable/tutorial_point"
|
|
|
+ android:layout_centerInParent="true"
|
|
|
+ tools:ignore="ContentDescription"/>
|
|
|
+
|
|
|
+ <TextView
|
|
|
android:layout_width="wrap_content"
|
|
|
android:layout_height="wrap_content"
|
|
|
- android:id="@+id/imageView4"
|
|
|
- android:src="@drawable/tutorial"/>
|
|
|
+ android:textAppearance="?android:attr/textAppearanceMedium"
|
|
|
+ android:text="@string/tutorial_content"
|
|
|
+ android:textColor="#ffffff"
|
|
|
+ android:textStyle="bold"
|
|
|
+ android:layout_marginLeft="30dp"
|
|
|
+ android:layout_marginRight="30dp"
|
|
|
+ android:layout_below="@+id/iv_tutorial_content"/>
|
|
|
|
|
|
<Button
|
|
|
android:layout_width="wrap_content"
|
|
|
@@ -319,7 +363,13 @@
|
|
|
android:layout_gravity="center_horizontal"
|
|
|
android:textColor="@color/input_button_color"
|
|
|
android:textStyle="bold"
|
|
|
- android:background="@drawable/button_selector"/>
|
|
|
- </LinearLayout>
|
|
|
+ android:background="@drawable/button_selector"
|
|
|
+ android:layout_centerHorizontal="true"
|
|
|
+ android:layout_alignParentEnd="false"
|
|
|
+ android:layout_alignParentBottom="true"
|
|
|
+ android:layout_marginBottom="50dp"
|
|
|
+ android:paddingLeft="10dp"
|
|
|
+ android:paddingRight="10dp"/>
|
|
|
+ </RelativeLayout>
|
|
|
|
|
|
</FrameLayout>
|