Customize the tutorial_slide3.xml
Extension of the RatingBar by " point" see main menu. Extension of the headline and the text with Custom Sudoku function.
This commit is contained in:
parent
65d4a11082
commit
36151eff0c
2 changed files with 35 additions and 13 deletions
|
@ -12,7 +12,6 @@
|
||||||
android:layout_centerVertical="true"
|
android:layout_centerVertical="true"
|
||||||
android:orientation="vertical">
|
android:orientation="vertical">
|
||||||
|
|
||||||
|
|
||||||
<TextView
|
<TextView
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
|
@ -21,18 +20,39 @@
|
||||||
android:textSize="@dimen/slide_title"
|
android:textSize="@dimen/slide_title"
|
||||||
android:textStyle="bold" />
|
android:textStyle="bold" />
|
||||||
|
|
||||||
<RatingBar
|
<TextView
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:id="@+id/difficultyBar"
|
android:text="@string/slide3_heading2"
|
||||||
android:layout_gravity="center_horizontal"
|
android:textColor="?attr/lightestFontColor"
|
||||||
android:isIndicator="true"
|
android:textSize="@dimen/slide_title"
|
||||||
android:numStars="4"
|
android:textStyle="bold" />
|
||||||
android:layout_marginTop="25dp"
|
<LinearLayout
|
||||||
android:rating="1"
|
android:layout_width="wrap_content"
|
||||||
android:background="?attr/backgroundTutorialStars"
|
android:layout_height="wrap_content"
|
||||||
android:stepSize="1"
|
android:gravity="center_vertical"
|
||||||
style="@style/RatingBar"/>
|
android:orientation="horizontal">
|
||||||
|
|
||||||
|
<CheckBox
|
||||||
|
android:id="@+id/circleButton"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="match_parent"
|
||||||
|
android:background="?attr/backgroundTutorialStars"
|
||||||
|
android:button="@drawable/create_game_src"
|
||||||
|
android:clickable="false" />
|
||||||
|
|
||||||
|
<RatingBar
|
||||||
|
android:id="@+id/difficultyBar"
|
||||||
|
style="@style/RatingBar"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:isIndicator="true"
|
||||||
|
android:layout_gravity="center_horizontal"
|
||||||
|
android:numStars="4"
|
||||||
|
android:rating="1"
|
||||||
|
android:background="?attr/backgroundTutorialStars"
|
||||||
|
android:stepSize="1" />
|
||||||
|
</LinearLayout>
|
||||||
|
|
||||||
<TextView
|
<TextView
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
|
|
|
@ -157,8 +157,10 @@
|
||||||
<string name="slide2_heading">Game mode</string>
|
<string name="slide2_heading">Game mode</string>
|
||||||
<string name="slide2_text">Swipe or press the arrow buttons on the left and right to change the game mode.</string>
|
<string name="slide2_text">Swipe or press the arrow buttons on the left and right to change the game mode.</string>
|
||||||
|
|
||||||
<string name="slide3_heading">Difficulty</string>
|
<string name="slide3_heading">Custom Sudoku </string>
|
||||||
<string name="slide3_text">Press or swipe the stars to change the difficulty.</string>
|
<string name="slide3_heading2">and difficulty</string>
|
||||||
|
<string name="slide3_text">Press or swipe the stars to change the difficulty.
|
||||||
|
For the Custom Sudoku game mode press the circle.</string>
|
||||||
|
|
||||||
<string name="next">Next</string>
|
<string name="next">Next</string>
|
||||||
<string name="skip">Skip</string>
|
<string name="skip">Skip</string>
|
||||||
|
|
Loading…
Reference in a new issue