~ubuntu-branches/ubuntu/precise/csound/precise

« back to all changes in this revision

Viewing changes to android/CsoundAndroidExamples/res/layout/button_test.xml

  • Committer: Package Import Robot
  • Author(s): Felipe Sateler
  • Date: 2012-04-19 09:26:46 UTC
  • mfrom: (3.2.19 sid)
  • Revision ID: package-import@ubuntu.com-20120419092646-96xbj1n6atuqosk2
Tags: 1:5.17.6~dfsg-1
* New upstream release
 - Do not build the wiimote opcodes (we need wiiuse).
* Add new API function to symbols file
* Disable lua opcodes, they were broken. Requires OpenMP to be enabled.
* Backport fixes from upstream:
  - Link dssi4cs with dl. Backport
  - Fix building of CsoundAC

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0" encoding="utf-8"?>
 
2
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
 
3
    android:layout_width="match_parent"
 
4
    android:layout_height="match_parent" >
 
5
 
 
6
    <ToggleButton
 
7
        android:id="@+id/onOffButton"
 
8
        android:layout_width="wrap_content"
 
9
        android:layout_height="wrap_content"
 
10
        android:layout_alignParentLeft="true"
 
11
        android:layout_alignParentTop="true"
 
12
        android:text="ToggleButton" />
 
13
 
 
14
    <Button
 
15
        android:id="@+id/valueButton"
 
16
        android:layout_width="wrap_content"
 
17
        android:layout_height="wrap_content"
 
18
        android:layout_alignParentLeft="true"
 
19
        android:layout_alignParentRight="true"
 
20
        android:layout_below="@+id/onOffButton"
 
21
        android:text="Value Button" />
 
22
 
 
23
    <Button
 
24
        android:id="@+id/eventButton"
 
25
        android:layout_width="wrap_content"
 
26
        android:layout_height="wrap_content"
 
27
        android:layout_alignParentLeft="true"
 
28
        android:layout_alignParentRight="true"
 
29
        android:layout_below="@+id/valueButton"
 
30
        android:text="Event Button" />
 
31
 
 
32
    <TextView
 
33
        android:id="@+id/TextView01"
 
34
        android:layout_width="wrap_content"
 
35
        android:layout_height="wrap_content"
 
36
        android:layout_alignParentLeft="true"
 
37
        android:layout_below="@+id/eventButton"
 
38
        android:padding="5dp"
 
39
        android:text="Duration"
 
40
        android:textAppearance="?android:attr/textAppearanceMedium" />
 
41
 
 
42
    <SeekBar
 
43
        android:id="@+id/durationSlider"
 
44
        android:layout_width="match_parent"
 
45
        android:layout_height="wrap_content"
 
46
        android:layout_toRightOf="@+id/TextView01"
 
47
        android:layout_alignParentRight="true"
 
48
        android:layout_alignTop="@+id/TextView01"
 
49
        android:padding="5dp" />
 
50
 
 
51
    <TextView
 
52
        android:id="@+id/textView2"
 
53
        android:layout_width="wrap_content"
 
54
        android:layout_height="wrap_content"
 
55
        android:layout_alignParentLeft="true"
 
56
        android:layout_alignParentRight="true"
 
57
        android:layout_below="@+id/durationSlider"
 
58
        android:padding="5dp"
 
59
        android:text="ADSR"
 
60
        android:textAppearance="?android:attr/textAppearanceLarge" />
 
61
 
 
62
    <SeekBar
 
63
        android:id="@+id/attackSlider"
 
64
        android:layout_width="match_parent"
 
65
        android:layout_height="wrap_content"
 
66
        android:layout_alignParentLeft="true"
 
67
        android:layout_below="@+id/textView2"
 
68
        android:padding="5dp" />
 
69
 
 
70
    <SeekBar
 
71
        android:id="@+id/decaySlider"
 
72
        android:layout_width="match_parent"
 
73
        android:layout_height="wrap_content"
 
74
        android:layout_alignParentLeft="true"
 
75
        android:layout_below="@+id/attackSlider"
 
76
        android:padding="5dp" />
 
77
 
 
78
    <SeekBar
 
79
        android:id="@+id/sustainSlider"
 
80
        android:layout_width="match_parent"
 
81
        android:layout_height="wrap_content"
 
82
        android:layout_alignParentLeft="true"
 
83
        android:layout_below="@+id/decaySlider"
 
84
        android:padding="5dp" />
 
85
 
 
86
    <SeekBar
 
87
        android:id="@+id/releaseSlider"
 
88
        android:layout_width="match_parent"
 
89
        android:layout_height="wrap_content"
 
90
        android:layout_alignParentLeft="true"
 
91
        android:layout_below="@+id/sustainSlider"
 
92
        android:padding="5dp" />
 
93
 
 
94
</RelativeLayout>
 
 
b'\\ No newline at end of file'