Revision be803eb3
Added by Leszek Koltunski 13 days ago
src/main/res/layout/mainlayout.xml | ||
---|---|---|
55 | 55 |
|
56 | 56 |
</LinearLayout> |
57 | 57 |
|
58 |
<TextView
|
|
59 |
android:id="@+id/solverMoves"
|
|
58 |
<LinearLayout
|
|
59 |
android:id="@+id/middleBar"
|
|
60 | 60 |
android:layout_below="@id/upperBar" |
61 | 61 |
android:layout_width="match_parent" |
62 | 62 |
android:layout_height="50dp" |
63 |
android:background="@color/white" |
|
64 |
android:textColor="@color/black" |
|
65 |
android:layout_marginStart="4dp" |
|
66 |
android:layout_marginEnd="4dp" |
|
67 |
android:textAppearance="?android:attr/textAppearanceLarge" |
|
68 |
android:gravity="center_vertical|start"/> |
|
63 |
android:gravity="center" |
|
64 |
android:orientation="horizontal" |
|
65 |
android:background="@android:color/transparent"> |
|
66 |
|
|
67 |
<TextView |
|
68 |
android:id="@+id/solverMoves" |
|
69 |
android:layout_width="0dp" |
|
70 |
android:layout_height="match_parent" |
|
71 |
android:layout_weight="2" |
|
72 |
android:background="@color/white" |
|
73 |
android:textColor="@color/black" |
|
74 |
android:layout_marginStart="4dp" |
|
75 |
android:layout_marginEnd="4dp" |
|
76 |
android:layout_marginTop="3dp" |
|
77 |
android:layout_marginBottom="5dp" |
|
78 |
android:textAppearance="?android:attr/textAppearanceLarge" |
|
79 |
android:gravity="center_vertical|start"/> |
|
80 |
<Spinner |
|
81 |
android:id="@+id/solverSpinner" |
|
82 |
android:layout_width="0dp" |
|
83 |
android:layout_height="match_parent" |
|
84 |
android:layout_weight="1"/> |
|
85 |
|
|
86 |
</LinearLayout> |
|
69 | 87 |
|
70 | 88 |
<LinearLayout |
71 | 89 |
android:id="@+id/phaseBar" |
Also available in: Unified diff
Add possibility to select different solvers.