Creating the content_game_view_create_sudoku.xml
The layout shows the playing field and contains the buttons.
This commit is contained in:
parent
df34a57f90
commit
efee6374d8
1 changed files with 50 additions and 0 deletions
50
app/src/main/res/layout/content_game_view_create_sudoku.xml
Normal file
50
app/src/main/res/layout/content_game_view_create_sudoku.xml
Normal file
|
@ -0,0 +1,50 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
xmlns:tools="http://schemas.android.com/tools"
|
||||||
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="match_parent"
|
||||||
|
android:id="@+id/main_content"
|
||||||
|
android:paddingLeft="@dimen/activity_horizontal_margin"
|
||||||
|
android:paddingRight="@dimen/activity_horizontal_margin"
|
||||||
|
android:paddingTop="@dimen/activity_vertical_margin"
|
||||||
|
android:paddingBottom="@dimen/activity_vertical_margin"
|
||||||
|
app:layout_behavior="@string/appbar_scrolling_view_behavior"
|
||||||
|
tools:context="org.secuso.privacyfriendlysudoku.ui.GameActivity">
|
||||||
|
|
||||||
|
<org.secuso.privacyfriendlysudoku.ui.view.SudokuFieldLayout
|
||||||
|
android:id="@+id/sudokuLayout"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layoutDirection="ltr"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:clickable="true"
|
||||||
|
android:gravity="center" />
|
||||||
|
|
||||||
|
<LinearLayout
|
||||||
|
android:layout_width="fill_parent"
|
||||||
|
android:layout_height="fill_parent"
|
||||||
|
android:layout_below="@+id/sudokuLayout"
|
||||||
|
android:orientation="vertical"
|
||||||
|
android:weightSum="3">
|
||||||
|
|
||||||
|
<org.secuso.privacyfriendlysudoku.ui.view.SudokuKeyboardLayout
|
||||||
|
android:layout_width="fill_parent"
|
||||||
|
android:layout_height="0px"
|
||||||
|
android:id="@+id/sudokuKeyboardLayout"
|
||||||
|
android:orientation="vertical"
|
||||||
|
android:layout_weight="2"
|
||||||
|
android:weightSum="2">
|
||||||
|
|
||||||
|
</org.secuso.privacyfriendlysudoku.ui.view.SudokuKeyboardLayout>
|
||||||
|
|
||||||
|
<org.secuso.privacyfriendlysudoku.ui.view.CreateSudokuSpecialButtonLayout
|
||||||
|
android:id="@+id/createSudokuLayout"
|
||||||
|
android:layout_width="fill_parent"
|
||||||
|
android:layout_height="0dp"
|
||||||
|
android:layout_weight="1">
|
||||||
|
|
||||||
|
</org.secuso.privacyfriendlysudoku.ui.view.CreateSudokuSpecialButtonLayout>
|
||||||
|
|
||||||
|
</LinearLayout>
|
||||||
|
|
||||||
|
</RelativeLayout>
|
Loading…
Reference in a new issue