/[svn]/jsampler/trunk/android/res/layout/choose_backend.xml
ViewVC logotype

Contents of /jsampler/trunk/android/res/layout/choose_backend.xml

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2302 - (show annotations) (download) (as text)
Thu Dec 15 23:13:30 2011 UTC (12 years, 4 months ago) by iliev
File MIME type: text/xml
File size: 2385 byte(s)
* Initial support for Android platforms (only sampler channel
  manipulation for now - see the screenshots on the website)

1 <?xml version="1.0" encoding="utf-8"?>
2 <TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
3 android:layout_width="match_parent"
4 android:layout_height="match_parent" >
5
6 <TableRow
7 android:layout_width="match_parent"
8 android:layout_height="match_parent" >
9
10 <ListView
11 android:id="@+id/choose_backend_list"
12 android:choiceMode="singleChoice"
13 android:layout_width="match_parent"
14 android:layout_height="match_parent"
15 android:layout_weight="1" >
16
17 </ListView>
18
19 <LinearLayout
20 android:layout_width="wrap_content"
21 android:layout_height="match_parent"
22 android:orientation="vertical" >
23
24 <Button
25 android:id="@+id/choose_backend_btn_add"
26 android:layout_width="match_parent"
27 android:layout_height="wrap_content"
28 android:text="@string/choose_backend.btn_add" />
29
30 <Button
31 android:id="@+id/choose_backend_btn_remove"
32 android:layout_width="match_parent"
33 android:layout_height="wrap_content"
34 android:text="@string/choose_backend.btn_remove" />
35
36 <View
37 android:layout_width="match_parent"
38 android:layout_height="12dp" />
39
40 <Button
41 android:id="@+id/choose_backend_btn_up"
42 android:layout_width="match_parent"
43 android:layout_height="wrap_content"
44 android:text="@string/choose_backend.btn_up" />
45
46 <Button
47 android:id="@+id/choose_backend_btn_down"
48 android:layout_width="wrap_content"
49 android:layout_height="wrap_content"
50 android:text="@string/choose_backend.btn_down" />
51
52 <View
53 android:layout_width="match_parent"
54 android:layout_height="wrap_content"
55 android:layout_weight="1" />
56
57 <Button
58 android:id="@+id/choose_backend_btn_connect"
59 android:layout_width="match_parent"
60 android:layout_height="wrap_content"
61 android:layout_gravity="bottom"
62 android:text="@string/choose_backend.btn_connect" />
63
64 </LinearLayout>
65
66 </TableRow>
67
68 </TableLayout>

  ViewVC Help
Powered by ViewVC