1 |
93a1c364
|
Leszek Koltunski
|
<?xml version="1.0" encoding="utf-8"?>
|
2 |
|
|
<LinearLayout
|
3 |
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
4 |
|
|
android:layout_width="match_parent"
|
5 |
|
|
android:layout_height="wrap_content"
|
6 |
840ad93e
|
leszek
|
android:background="?mediumC"
|
7 |
93a1c364
|
Leszek Koltunski
|
android:padding="8dp"
|
8 |
3bedda30
|
leszek
|
android:orientation="vertical">
|
9 |
93a1c364
|
Leszek Koltunski
|
|
10 |
3bedda30
|
leszek
|
<TextView
|
11 |
|
|
android:id="@+id/solvers_pane_title"
|
12 |
|
|
android:gravity="top|start"
|
13 |
|
|
android:layout_width="match_parent"
|
14 |
|
|
android:layout_height="wrap_content"
|
15 |
|
|
android:singleLine="true"
|
16 |
|
|
android:textStyle="bold"/>
|
17 |
93a1c364
|
Leszek Koltunski
|
|
18 |
3bedda30
|
leszek
|
<TextView
|
19 |
|
|
android:id="@+id/solvers_pane_description"
|
20 |
|
|
android:gravity="top|start"
|
21 |
|
|
android:layout_width="match_parent"
|
22 |
|
|
android:layout_height="wrap_content"/>
|
23 |
93a1c364
|
Leszek Koltunski
|
|
24 |
3bedda30
|
leszek
|
<Button
|
25 |
|
|
android:id="@+id/solvers_pane_button"
|
26 |
|
|
android:layout_width="match_parent"
|
27 |
|
|
android:layout_height="wrap_content"
|
28 |
|
|
android:layout_gravity="bottom"
|
29 |
|
|
android:gravity="center"
|
30 |
|
|
android:backgroundTint="?veryDarkC"
|
31 |
|
|
android:insetTop="0dp"
|
32 |
|
|
android:insetBottom="0dp"
|
33 |
|
|
android:text="@string/use_solver"/>
|
34 |
93a1c364
|
Leszek Koltunski
|
|
35 |
|
|
</LinearLayout>
|