Project

General

Profile

Download (1.58 KB) Statistics
| Branch: | Tag: | Revision:

magiccube / src / main / res / layout / dialog_solvers_pane.xml @ 7d1ba3d2

1
<?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
	android:background="@color/medium_grey"
7
	android:padding="8dp"
8
	android:orientation="horizontal">
9

    
10
    <ImageView
11
   	     android:id="@+id/solvers_pane_image"
12
   	     android:scaleType="fitCenter"
13
   		 android:layout_width="0dp"
14
   		 android:layout_height="match_parent"
15
   		 android:layout_gravity="top"
16
   		 android:layout_weight="0.5"/>
17

    
18
   	<LinearLayout
19
   		android:layout_width="0dp"
20
 		android:layout_height="match_parent"
21
 		android:orientation="vertical"
22
 		android:layout_marginStart="8dp"
23
 		android:layout_weight="1.0">
24

    
25
		<TextView
26
    		android:id="@+id/solvers_pane_title"
27
    		android:gravity="top|start"
28
    		android:layout_width="match_parent"
29
    		android:layout_height="wrap_content"
30
    		android:singleLine="true"
31
    		android:textStyle="bold"/>
32

    
33
        <TextView
34
    		android:id="@+id/solvers_pane_description"
35
    		android:gravity="top|start"
36
    		android:layout_width="match_parent"
37
    		android:layout_height="wrap_content"/>
38

    
39
    	<Button
40
             android:id="@+id/solvers_pane_button"
41
             android:layout_width="match_parent"
42
             android:layout_height="wrap_content"
43
             android:layout_gravity="bottom"
44
             android:gravity="center"
45
             android:backgroundTint="@color/black"
46
             android:insetTop="0dp"
47
             android:insetBottom="0dp"
48
             android:text="@string/use_solver"/>
49

    
50
 	</LinearLayout>
51
</LinearLayout>
(25-25/44)