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

Contents of /jsampler/trunk/android/res/layout/ok_cancel.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: 1091 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 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3 android:id="@+id/ok_cancel_view"
4 android:layout_width="match_parent"
5 android:layout_height="match_parent"
6 android:orientation="vertical" >
7
8 <LinearLayout
9 android:id="@+id/linearLayout"
10 android:layout_width="match_parent"
11 android:layout_height="wrap_content" >
12 </LinearLayout>
13
14 <LinearLayout
15 android:id="@+id/linearLayout2"
16 android:layout_width="match_parent"
17 android:layout_height="wrap_content" >
18
19 <Button
20 android:id="@+id/btn_ok"
21 android:layout_width="match_parent"
22 android:layout_height="wrap_content"
23 android:layout_weight="1"
24 android:text="@string/ok" />
25
26 <Button
27 android:id="@+id/btn_cancel"
28 android:layout_width="match_parent"
29 android:layout_height="wrap_content"
30 android:layout_weight="1"
31 android:text="@string/cancel" />
32
33 </LinearLayout>
34
35 </LinearLayout>

  ViewVC Help
Powered by ViewVC