1 <?xml version="1.0" encoding="utf-8"?> 2 <!-- Copyright (C) 2009 The Android Open Source Project 3 4 Licensed under the Apache License, Version 2.0 (the "License"); 5 you may not use this file except in compliance with the License. 6 You may obtain a copy of the License at 7 8 http://www.apache.org/licenses/LICENSE-2.0 9 10 Unless required by applicable law or agreed to in writing, software 11 distributed under the License is distributed on an "AS IS" BASIS, 12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 See the License for the specific language governing permissions and 14 limitations under the License. 15 --> 16 17 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 18 android:layout_width="fill_parent" 19 android:layout_height="fill_parent" 20 android:orientation="vertical"> 21 22 <ImageView 23 android:src="@android:drawable/divider_horizontal_dark" 24 android:layout_width="fill_parent" 25 android:layout_height="wrap_content" 26 android:scaleType="fitXY"/> 27 28 <LinearLayout android:id="@+id/rvbReleaseLayout" 29 android:orientation="horizontal" 30 android:layout_width="fill_parent" 31 android:layout_height="wrap_content" 32 android:layout_marginLeft="10dip" 33 android:layout_marginTop="10dip" 34 android:layout_marginRight="10dip" 35 android:layout_marginBottom="10dip" > 36 37 <TextView android:id="@+id/rvbReleaseText" 38 android:layout_width="fill_parent" 39 android:layout_height="fill_parent" 40 android:layout_weight="1.0" 41 android:layout_gravity="center_vertical|left" 42 android:text="@string/effect_release" 43 style="@android:style/TextAppearance.Medium" /> 44 45 <ToggleButton android:id="@+id/rvbReleaseButton" 46 android:layout_width="wrap_content" 47 android:layout_height="fill_parent" 48 android:layout_gravity="center_vertical|right" 49 android:layout_weight="0.0" /> 50 51 </LinearLayout> 52 53 <ImageView 54 android:src="@android:drawable/divider_horizontal_dark" 55 android:layout_width="fill_parent" 56 android:layout_height="wrap_content" 57 android:scaleType="fitXY"/> 58 59 <LinearLayout android:id="@+id/rvbControlLayout" 60 android:orientation="horizontal" 61 android:layout_width="fill_parent" 62 android:layout_height="wrap_content" 63 android:layout_marginLeft="10dip" 64 android:layout_marginTop="10dip" 65 android:layout_marginRight="10dip" 66 android:layout_marginBottom="10dip" > 67 68 <TextView android:id="@+id/rvbControlText" 69 android:layout_width="fill_parent" 70 android:layout_height="fill_parent" 71 android:layout_weight="1.0" 72 android:layout_gravity="center_vertical|left" 73 android:text="@string/effect_control" 74 style="@android:style/TextAppearance.Medium" /> 75 76 <ToggleButton android:id="@+id/rvbOnOff" 77 android:layout_width="wrap_content" 78 android:layout_height="fill_parent" 79 android:layout_gravity="center_vertical|right" 80 android:layout_weight="0.0" /> 81 82 </LinearLayout> 83 84 <ImageView 85 android:src="@android:drawable/divider_horizontal_dark" 86 android:layout_width="fill_parent" 87 android:layout_height="wrap_content" 88 android:scaleType="fitXY"/> 89 90 <LinearLayout android:id="@+id/auxFrame" 91 android:orientation="horizontal" 92 android:layout_width="fill_parent" 93 android:layout_height="wrap_content" 94 android:layout_marginLeft="3dip" 95 android:layout_marginTop="3dip" 96 android:layout_marginRight="3dip" 97 android:layout_marginBottom="3dip" > 98 99 <LinearLayout 100 android:layout_width="fill_parent" 101 android:layout_height="fill_parent" 102 android:layout_gravity="left" 103 android:layout_weight="1.0" 104 android:orientation="vertical" 105 android:layout_marginLeft="1dip" 106 android:layout_marginTop="1dip" 107 android:layout_marginRight="1dip" 108 android:layout_marginBottom="1dip" 109 > 110 111 <LinearLayout android:id="@+id/playPauseFrame" 112 android:orientation="horizontal" 113 android:layout_width="fill_parent" 114 android:layout_height="wrap_content" 115 android:layout_marginLeft="1dip" 116 android:layout_marginTop="1dip" 117 android:layout_marginRight="3dip" 118 android:layout_marginBottom="1dip" > 119 120 <ImageButton android:id="@+id/stop1" 121 android:layout_width="wrap_content" 122 android:layout_height="wrap_content" 123 android:layout_gravity="center_vertical|left" 124 android:layout_weight="0.0" 125 android:src="@drawable/stop"/> 126 127 <ImageButton android:id="@+id/playPause1" 128 android:layout_width="wrap_content" 129 android:layout_height="wrap_content" 130 android:layout_gravity="center_vertical|center" 131 android:layout_weight="0.0" 132 android:src="@android:drawable/ic_media_play"/> 133 134 <ToggleButton android:id="@+id/attachButton" 135 android:layout_width="wrap_content" 136 android:layout_height="wrap_content" 137 android:layout_gravity="center_vertical|right" 138 android:layout_weight="0.0" 139 android:textOff="@string/effect_attach_off" 140 android:textOn="@string/effect_attach_on" /> 141 </LinearLayout> 142 143 <TextView android:id="@+id/sessionText" 144 android:layout_width="fill_parent" 145 android:layout_height="wrap_content" /> 146 147 </LinearLayout> 148 149 <LinearLayout 150 android:layout_width="fill_parent" 151 android:layout_height="fill_parent" 152 android:orientation="vertical" 153 android:layout_gravity="right" 154 android:layout_weight="1.0" 155 android:layout_marginLeft="3dip" 156 android:layout_marginTop="3dip" 157 android:layout_marginRight="1dip" 158 android:layout_marginBottom="3dip" 159 > 160 161 <TextView android:id="@+id/sendLevelText" 162 android:layout_width="fill_parent" 163 android:layout_height="wrap_content" 164 android:text="@string/send_level_name" /> 165 166 <SeekBar android:id="@+id/sendLevelSeekBar" 167 android:layout_width="fill_parent" 168 android:layout_height="wrap_content" 169 android:max="100" 170 android:progress="50" 171 android:layout_marginLeft="10dip" 172 android:layout_marginRight="30dip" /> 173 174 <TextView android:id="@+id/sendLevelValue" 175 android:layout_width="fill_parent" 176 android:layout_height="wrap_content" /> 177 178 </LinearLayout> 179 </LinearLayout> 180 181 <ImageView 182 android:src="@android:drawable/divider_horizontal_dark" 183 android:layout_width="fill_parent" 184 android:layout_height="wrap_content" 185 android:scaleType="fitXY"/> 186 187 <ScrollView 188 android:layout_width="fill_parent" 189 android:layout_height="wrap_content" > 190 191 <LinearLayout 192 android:layout_width="fill_parent" 193 android:layout_height="wrap_content" 194 android:orientation="vertical"> 195 196 <LinearLayout 197 android:layout_width="fill_parent" 198 android:layout_height="wrap_content" 199 android:gravity="center_horizontal" 200 android:orientation="vertical" 201 android:layout_marginLeft="10dip" 202 android:layout_marginTop="10dip" 203 android:layout_marginRight="10dip" 204 android:layout_marginBottom="10dip" 205 > 206 207 <TextView android:id="@+id/rvbParam1Name" 208 android:layout_width="fill_parent" 209 android:layout_height="wrap_content" 210 android:text="@string/rvb_param_1_name" /> 211 212 <SeekBar android:id="@+id/rvbParam1SeekBar" 213 android:layout_width="fill_parent" 214 android:layout_height="wrap_content" 215 android:max="100" 216 android:progress="50" 217 android:layout_marginLeft="10dip" 218 android:layout_marginRight="30dip" /> 219 220 <TextView android:id="@+id/rvbParam1Value" 221 android:layout_width="fill_parent" 222 android:layout_height="wrap_content" /> 223 224 </LinearLayout> 225 226 <ImageView 227 android:src="@android:drawable/divider_horizontal_dark" 228 android:layout_width="fill_parent" 229 android:layout_height="wrap_content" 230 android:scaleType="fitXY"/> 231 232 <LinearLayout 233 android:layout_width="fill_parent" 234 android:layout_height="wrap_content" 235 android:gravity="center_horizontal" 236 android:orientation="vertical" 237 android:layout_marginLeft="10dip" 238 android:layout_marginTop="10dip" 239 android:layout_marginRight="10dip" 240 android:layout_marginBottom="10dip" 241 > 242 243 <TextView android:id="@+id/rvbParam2Name" 244 android:layout_width="fill_parent" 245 android:layout_height="wrap_content" 246 android:text="@string/rvb_param_2_name" /> 247 248 <SeekBar android:id="@+id/rvbParam2SeekBar" 249 android:layout_width="fill_parent" 250 android:layout_height="wrap_content" 251 android:max="100" 252 android:progress="50" 253 android:layout_marginLeft="10dip" 254 android:layout_marginRight="30dip" /> 255 256 <TextView android:id="@+id/rvbParam2Value" 257 android:layout_width="fill_parent" 258 android:layout_height="wrap_content" /> 259 260 </LinearLayout> 261 262 <ImageView 263 android:src="@android:drawable/divider_horizontal_dark" 264 android:layout_width="fill_parent" 265 android:layout_height="wrap_content" 266 android:scaleType="fitXY"/> 267 268 <LinearLayout 269 android:layout_width="fill_parent" 270 android:layout_height="wrap_content" 271 android:gravity="center_horizontal" 272 android:orientation="vertical" 273 android:layout_marginLeft="10dip" 274 android:layout_marginTop="10dip" 275 android:layout_marginRight="10dip" 276 android:layout_marginBottom="10dip" 277 > 278 279 <TextView android:id="@+id/rvbParam3Name" 280 android:layout_width="fill_parent" 281 android:layout_height="wrap_content" 282 android:text="@string/rvb_param_3_name" /> 283 284 <SeekBar android:id="@+id/rvbParam3SeekBar" 285 android:layout_width="fill_parent" 286 android:layout_height="wrap_content" 287 android:max="100" 288 android:progress="50" 289 android:layout_marginLeft="10dip" 290 android:layout_marginRight="30dip" /> 291 292 <TextView android:id="@+id/rvbParam3Value" 293 android:layout_width="fill_parent" 294 android:layout_height="wrap_content" /> 295 296 </LinearLayout> 297 298 <ImageView 299 android:src="@android:drawable/divider_horizontal_dark" 300 android:layout_width="fill_parent" 301 android:layout_height="wrap_content" 302 android:scaleType="fitXY"/> 303 304 <LinearLayout 305 android:layout_width="fill_parent" 306 android:layout_height="wrap_content" 307 android:gravity="center_horizontal" 308 android:orientation="vertical" 309 android:layout_marginLeft="10dip" 310 android:layout_marginTop="10dip" 311 android:layout_marginRight="10dip" 312 android:layout_marginBottom="10dip" 313 > 314 315 <TextView android:id="@+id/rvbParam4Name" 316 android:layout_width="fill_parent" 317 android:layout_height="wrap_content" 318 android:text="@string/rvb_param_4_name" /> 319 320 <SeekBar android:id="@+id/rvbParam4SeekBar" 321 android:layout_width="fill_parent" 322 android:layout_height="wrap_content" 323 android:max="100" 324 android:progress="50" 325 android:layout_marginLeft="10dip" 326 android:layout_marginRight="30dip" /> 327 328 <TextView android:id="@+id/rvbParam4Value" 329 android:layout_width="fill_parent" 330 android:layout_height="wrap_content" /> 331 332 </LinearLayout> 333 <ImageView 334 android:src="@android:drawable/divider_horizontal_dark" 335 android:layout_width="fill_parent" 336 android:layout_height="wrap_content" 337 android:scaleType="fitXY"/> 338 339 <LinearLayout 340 android:layout_width="fill_parent" 341 android:layout_height="wrap_content" 342 android:gravity="center_horizontal" 343 android:orientation="vertical" 344 android:layout_marginLeft="10dip" 345 android:layout_marginTop="10dip" 346 android:layout_marginRight="10dip" 347 android:layout_marginBottom="10dip" 348 > 349 350 <TextView android:id="@+id/rvbParam5Name" 351 android:layout_width="fill_parent" 352 android:layout_height="wrap_content" 353 android:text="@string/rvb_param_5_name" /> 354 355 <SeekBar android:id="@+id/rvbParam5SeekBar" 356 android:layout_width="fill_parent" 357 android:layout_height="wrap_content" 358 android:max="100" 359 android:progress="50" 360 android:layout_marginLeft="10dip" 361 android:layout_marginRight="30dip" /> 362 363 <TextView android:id="@+id/rvbParam5Value" 364 android:layout_width="fill_parent" 365 android:layout_height="wrap_content" /> 366 367 </LinearLayout> 368 <ImageView 369 android:src="@android:drawable/divider_horizontal_dark" 370 android:layout_width="fill_parent" 371 android:layout_height="wrap_content" 372 android:scaleType="fitXY"/> 373 374 <LinearLayout 375 android:layout_width="fill_parent" 376 android:layout_height="wrap_content" 377 android:gravity="center_horizontal" 378 android:orientation="vertical" 379 android:layout_marginLeft="10dip" 380 android:layout_marginTop="10dip" 381 android:layout_marginRight="10dip" 382 android:layout_marginBottom="10dip" 383 > 384 385 <TextView android:id="@+id/rvbParam6Name" 386 android:layout_width="fill_parent" 387 android:layout_height="wrap_content" 388 android:text="@string/rvb_param_6_name" /> 389 390 <SeekBar android:id="@+id/rvbParam6SeekBar" 391 android:layout_width="fill_parent" 392 android:layout_height="wrap_content" 393 android:max="100" 394 android:progress="50" 395 android:layout_marginLeft="10dip" 396 android:layout_marginRight="30dip" /> 397 398 <TextView android:id="@+id/rvbParam6Value" 399 android:layout_width="fill_parent" 400 android:layout_height="wrap_content" /> 401 402 </LinearLayout> 403 <ImageView 404 android:src="@android:drawable/divider_horizontal_dark" 405 android:layout_width="fill_parent" 406 android:layout_height="wrap_content" 407 android:scaleType="fitXY"/> 408 409 <LinearLayout 410 android:layout_width="fill_parent" 411 android:layout_height="wrap_content" 412 android:gravity="center_horizontal" 413 android:orientation="vertical" 414 android:layout_marginLeft="10dip" 415 android:layout_marginTop="10dip" 416 android:layout_marginRight="10dip" 417 android:layout_marginBottom="10dip" 418 > 419 420 <TextView android:id="@+id/rvbParam7Name" 421 android:layout_width="fill_parent" 422 android:layout_height="wrap_content" 423 android:text="@string/rvb_param_7_name" /> 424 425 <SeekBar android:id="@+id/rvbParam7SeekBar" 426 android:layout_width="fill_parent" 427 android:layout_height="wrap_content" 428 android:max="100" 429 android:progress="50" 430 android:layout_marginLeft="10dip" 431 android:layout_marginRight="30dip" /> 432 433 <TextView android:id="@+id/rvbParam7Value" 434 android:layout_width="fill_parent" 435 android:layout_height="wrap_content" /> 436 437 </LinearLayout> 438 <ImageView 439 android:src="@android:drawable/divider_horizontal_dark" 440 android:layout_width="fill_parent" 441 android:layout_height="wrap_content" 442 android:scaleType="fitXY"/> 443 444 <LinearLayout 445 android:layout_width="fill_parent" 446 android:layout_height="wrap_content" 447 android:gravity="center_horizontal" 448 android:orientation="vertical" 449 android:layout_marginLeft="10dip" 450 android:layout_marginTop="10dip" 451 android:layout_marginRight="10dip" 452 android:layout_marginBottom="10dip" 453 > 454 455 <TextView android:id="@+id/rvbParam8Name" 456 android:layout_width="fill_parent" 457 android:layout_height="wrap_content" 458 android:text="@string/rvb_param_8_name" /> 459 460 <SeekBar android:id="@+id/rvbParam8SeekBar" 461 android:layout_width="fill_parent" 462 android:layout_height="wrap_content" 463 android:max="100" 464 android:progress="50" 465 android:layout_marginLeft="10dip" 466 android:layout_marginRight="30dip" /> 467 468 <TextView android:id="@+id/rvbParam8Value" 469 android:layout_width="fill_parent" 470 android:layout_height="wrap_content" /> 471 472 </LinearLayout> 473 <ImageView 474 android:src="@android:drawable/divider_horizontal_dark" 475 android:layout_width="fill_parent" 476 android:layout_height="wrap_content" 477 android:scaleType="fitXY"/> 478 479 <LinearLayout 480 android:layout_width="fill_parent" 481 android:layout_height="wrap_content" 482 android:gravity="center_horizontal" 483 android:orientation="vertical" 484 android:layout_marginLeft="10dip" 485 android:layout_marginTop="10dip" 486 android:layout_marginRight="10dip" 487 android:layout_marginBottom="10dip" 488 > 489 490 <TextView android:id="@+id/rvbParam9Name" 491 android:layout_width="fill_parent" 492 android:layout_height="wrap_content" 493 android:text="@string/rvb_param_9_name" /> 494 495 <SeekBar android:id="@+id/rvbParam9SeekBar" 496 android:layout_width="fill_parent" 497 android:layout_height="wrap_content" 498 android:max="100" 499 android:progress="50" 500 android:layout_marginLeft="10dip" 501 android:layout_marginRight="30dip" /> 502 503 <TextView android:id="@+id/rvbParam9Value" 504 android:layout_width="fill_parent" 505 android:layout_height="wrap_content" /> 506 507 </LinearLayout> 508 <ImageView 509 android:src="@android:drawable/divider_horizontal_dark" 510 android:layout_width="fill_parent" 511 android:layout_height="wrap_content" 512 android:scaleType="fitXY"/> 513 514 <LinearLayout 515 android:layout_width="fill_parent" 516 android:layout_height="wrap_content" 517 android:gravity="center_horizontal" 518 android:orientation="vertical" 519 android:layout_marginLeft="10dip" 520 android:layout_marginTop="10dip" 521 android:layout_marginRight="10dip" 522 android:layout_marginBottom="10dip" 523 > 524 525 <TextView android:id="@+id/rvbParam10Name" 526 android:layout_width="fill_parent" 527 android:layout_height="wrap_content" 528 android:text="@string/rvb_param_10_name" /> 529 530 <SeekBar android:id="@+id/rvbParam10SeekBar" 531 android:layout_width="fill_parent" 532 android:layout_height="wrap_content" 533 android:max="100" 534 android:progress="50" 535 android:layout_marginLeft="10dip" 536 android:layout_marginRight="30dip" /> 537 538 <TextView android:id="@+id/rvbParam10Value" 539 android:layout_width="fill_parent" 540 android:layout_height="wrap_content" /> 541 542 </LinearLayout> 543 </LinearLayout> 544 545 </ScrollView> 546 547 <ImageView 548 android:src="@android:drawable/divider_horizontal_dark" 549 android:layout_width="fill_parent" 550 android:layout_height="wrap_content" 551 android:scaleType="fitXY"/> 552 553 </LinearLayout> 554