Add radical selection view
app/src/main/java/eu/lepiller/nani/RadicalSelectorView.java unknown status 1
1 | + | package eu.lepiller.nani; | |
2 | + | ||
3 | + | public class RadicalSelectorView { | |
4 | + | } |
app/src/main/res/layout/content_radicals.xml unknown status 1
1 | + | <?xml version="1.0" encoding="utf-8"?> | |
2 | + | <merge xmlns:android="http://schemas.android.com/apk/res/android" | |
3 | + | android:layout_width="match_parent" | |
4 | + | android:layout_height="match_parent" | |
5 | + | android:orientation="vertical"> | |
6 | + | ||
7 | + | <ScrollView | |
8 | + | android:layout_width="match_parent" | |
9 | + | android:layout_height="wrap_content"> | |
10 | + | ||
11 | + | <TableLayout | |
12 | + | android:layout_width="match_parent" | |
13 | + | android:layout_height="wrap_content" | |
14 | + | android:orientation="vertical" > | |
15 | + | ||
16 | + | <TableRow | |
17 | + | android:layout_width="match_parent" | |
18 | + | android:layout_height="match_parent" > | |
19 | + | ||
20 | + | <TextView | |
21 | + | android:id="@+id/textView16" | |
22 | + | android:layout_width="wrap_content" | |
23 | + | android:layout_height="wrap_content" | |
24 | + | android:text="TextView" /> | |
25 | + | </TableRow> | |
26 | + | ||
27 | + | <TableRow | |
28 | + | android:layout_width="match_parent" | |
29 | + | android:layout_height="match_parent" > | |
30 | + | ||
31 | + | <TextView | |
32 | + | android:id="@+id/textView17" | |
33 | + | android:layout_width="wrap_content" | |
34 | + | android:layout_height="wrap_content" | |
35 | + | android:text="TextView" /> | |
36 | + | </TableRow> | |
37 | + | </TableLayout> | |
38 | + | </ScrollView> | |
39 | + | ||
40 | + | <ScrollView | |
41 | + | android:layout_width="match_parent" | |
42 | + | android:layout_height="match_parent"> | |
43 | + | ||
44 | + | <TableLayout | |
45 | + | android:layout_width="match_parent" | |
46 | + | android:layout_height="wrap_content" | |
47 | + | android:orientation="vertical" > | |
48 | + | ||
49 | + | <TableRow | |
50 | + | android:layout_width="match_parent" | |
51 | + | android:layout_height="match_parent" > | |
52 | + | ||
53 | + | <TextView | |
54 | + | android:id="@+id/textView18" | |
55 | + | android:layout_width="wrap_content" | |
56 | + | android:layout_height="wrap_content" | |
57 | + | android:text="1" /> | |
58 | + | ||
59 | + | <ToggleButton | |
60 | + | android:id="@+id/toggleButton" | |
61 | + | android:layout_width="45dp" | |
62 | + | android:layout_height="wrap_content" | |
63 | + | android:checked="false" | |
64 | + | android:enabled="true" | |
65 | + | android:text="??????" | |
66 | + | android:textOff="???" | |
67 | + | android:textOn="??????" /> | |
68 | + | </TableRow> | |
69 | + | ||
70 | + | <TableRow | |
71 | + | android:layout_width="match_parent" | |
72 | + | android:layout_height="match_parent" > | |
73 | + | ||
74 | + | </TableRow> | |
75 | + | </TableLayout> | |
76 | + | </ScrollView> | |
77 | + | </merge> | |
77 | < | ||
0 | 78 | < | \ No newline at end of file |