1<?xml version="1.0" encoding="utf-8" ?> 2<!-- Copyright (C) 2010-2011 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 18 xmlns:android="http://schemas.android.com/apk/res/android" 19 android:id="@+id/eqcontainer" 20 android:layout_width="match_parent" 21 android:layout_height="wrap_content" 22 android:orientation="horizontal" 23 android:gravity="center_horizontal"> 24 25 <RelativeLayout 26 android:layout_width="wrap_content" 27 android:layout_height="match_parent" 28 android:layout_marginTop="10dip" 29 android:layout_marginBottom="32dip"> 30 31 <TextView 32 android:id="@+id/maxLevelText" 33 android:layout_width="wrap_content" 34 android:layout_height="wrap_content" 35 android:textAppearance="?android:attr/textAppearanceSmall" 36 android:layout_alignParentTop="true" 37 /> 38 <TextView 39 android:id="@+id/centerLevelText" 40 android:layout_width="wrap_content" 41 android:layout_height="wrap_content" 42 android:textAppearance="?android:attr/textAppearanceSmall" 43 android:layout_centerVertical="true" 44 /> 45 <TextView 46 android:id="@+id/minLevelText" 47 android:layout_width="wrap_content" 48 android:layout_height="wrap_content" 49 android:textAppearance="?android:attr/textAppearanceSmall" 50 android:layout_alignParentBottom="true" 51 /> 52 </RelativeLayout> 53 <LinearLayout 54 android:orientation="vertical" 55 android:layout_width="wrap_content" 56 android:layout_height="wrap_content" 57 android:gravity="center_vertical"> 58 <com.android.musicfx.SeekBarRotator 59 android:layout_width="wrap_content" 60 android:layout_height="@dimen/eq_slider_height"> 61 <SeekBar 62 android:id="@+id/EQBand0SeekBar" 63 android:layout_margin="@dimen/eq_slider_margin" 64 android:layout_width="match_parent" 65 android:layout_height="match_parent" /> 66 </com.android.musicfx.SeekBarRotator> 67 <TextView 68 android:id="@+id/EQBand0TextView" 69 android:layout_width="50dip" 70 android:layout_height="wrap_content" 71 android:layout_gravity="center" /> 72 </LinearLayout> 73 <LinearLayout 74 android:orientation="vertical" 75 android:layout_width="wrap_content" 76 android:layout_height="match_parent"> 77 <com.android.musicfx.SeekBarRotator 78 android:layout_width="wrap_content" 79 android:layout_height="@dimen/eq_slider_height"> 80 <SeekBar 81 android:id="@+id/EQBand1SeekBar" 82 android:layout_margin="@dimen/eq_slider_margin" 83 android:layout_width="match_parent" 84 android:layout_height="match_parent" /> 85 </com.android.musicfx.SeekBarRotator> 86 <TextView 87 android:id="@+id/EQBand1TextView" 88 android:layout_width="50dip" 89 android:layout_height="wrap_content" 90 android:layout_gravity="center" /> 91 </LinearLayout> 92 <LinearLayout 93 android:orientation="vertical" 94 android:layout_width="wrap_content" 95 android:layout_height="match_parent"> 96 <com.android.musicfx.SeekBarRotator 97 android:layout_width="wrap_content" 98 android:layout_height="@dimen/eq_slider_height"> 99 <SeekBar 100 android:id="@+id/EQBand2SeekBar" 101 android:layout_margin="@dimen/eq_slider_margin" 102 android:layout_width="match_parent" 103 android:layout_height="match_parent" /> 104 </com.android.musicfx.SeekBarRotator> 105 <TextView 106 android:id="@+id/EQBand2TextView" 107 android:layout_width="50dip" 108 android:layout_height="wrap_content" 109 android:layout_gravity="center" /> 110 </LinearLayout> 111 <LinearLayout 112 android:orientation="vertical" 113 android:layout_width="wrap_content" 114 android:layout_height="match_parent"> 115 <com.android.musicfx.SeekBarRotator 116 android:layout_width="wrap_content" 117 android:layout_height="@dimen/eq_slider_height"> 118 <SeekBar 119 android:id="@+id/EQBand3SeekBar" 120 android:layout_margin="@dimen/eq_slider_margin" 121 android:layout_width="match_parent" 122 android:layout_height="match_parent" /> 123 </com.android.musicfx.SeekBarRotator> 124 <TextView 125 android:id="@+id/EQBand3TextView" 126 android:layout_width="50dip" 127 android:layout_height="wrap_content" 128 android:layout_gravity="center" /> 129 </LinearLayout> 130 <LinearLayout 131 android:orientation="vertical" 132 android:layout_width="wrap_content" 133 android:layout_height="match_parent"> 134 <com.android.musicfx.SeekBarRotator 135 android:layout_width="wrap_content" 136 android:layout_height="@dimen/eq_slider_height"> 137 <SeekBar 138 android:id="@+id/EQBand4SeekBar" 139 android:layout_margin="@dimen/eq_slider_margin" 140 android:layout_width="match_parent" 141 android:layout_height="match_parent" /> 142 </com.android.musicfx.SeekBarRotator> 143 <TextView 144 android:id="@+id/EQBand4TextView" 145 android:layout_width="50dip" 146 android:layout_height="wrap_content" 147 android:layout_gravity="center" /> 148 </LinearLayout> 149 <LinearLayout 150 android:orientation="vertical" 151 android:layout_width="wrap_content" 152 android:layout_height="match_parent"> 153 <com.android.musicfx.SeekBarRotator 154 android:layout_width="wrap_content" 155 android:layout_height="@dimen/eq_slider_height"> 156 <SeekBar 157 android:id="@+id/EQBand5SeekBar" 158 android:layout_margin="@dimen/eq_slider_margin" 159 android:layout_width="match_parent" 160 android:layout_height="match_parent" /> 161 </com.android.musicfx.SeekBarRotator> 162 <TextView 163 android:id="@+id/EQBand5TextView" 164 android:layout_width="50dip" 165 android:layout_height="wrap_content" 166 android:layout_gravity="center" /> 167 </LinearLayout> 168 <LinearLayout 169 android:orientation="vertical" 170 android:layout_width="wrap_content" 171 android:layout_height="match_parent"> 172 <com.android.musicfx.SeekBarRotator 173 android:layout_width="wrap_content" 174 android:layout_height="@dimen/eq_slider_height"> 175 <SeekBar 176 android:id="@+id/EQBand6SeekBar" 177 android:layout_margin="@dimen/eq_slider_margin" 178 android:layout_width="match_parent" 179 android:layout_height="match_parent" /> 180 </com.android.musicfx.SeekBarRotator> 181 <TextView 182 android:id="@+id/EQBand6TextView" 183 android:layout_width="50dip" 184 android:layout_height="wrap_content" 185 android:layout_gravity="center" /> 186 </LinearLayout> 187 <LinearLayout 188 android:orientation="vertical" 189 android:layout_width="wrap_content" 190 android:layout_height="match_parent"> 191 <com.android.musicfx.SeekBarRotator 192 android:layout_width="wrap_content" 193 android:layout_height="@dimen/eq_slider_height"> 194 <SeekBar 195 android:id="@+id/EQBand7SeekBar" 196 android:layout_margin="@dimen/eq_slider_margin" 197 android:layout_width="match_parent" 198 android:layout_height="match_parent" /> 199 </com.android.musicfx.SeekBarRotator> 200 <TextView 201 android:id="@+id/EQBand7TextView" 202 android:layout_width="50dip" 203 android:layout_height="wrap_content" 204 android:layout_gravity="center" /> 205 </LinearLayout> 206 <LinearLayout 207 android:orientation="vertical" 208 android:layout_width="wrap_content" 209 android:layout_height="match_parent"> 210 <com.android.musicfx.SeekBarRotator 211 android:layout_width="wrap_content" 212 android:layout_height="@dimen/eq_slider_height"> 213 <SeekBar 214 android:id="@+id/EQBand8SeekBar" 215 android:layout_margin="@dimen/eq_slider_margin" 216 android:layout_width="match_parent" 217 android:layout_height="match_parent" /> 218 </com.android.musicfx.SeekBarRotator> 219 <TextView 220 android:id="@+id/EQBand8TextView" 221 android:layout_width="50dip" 222 android:layout_height="wrap_content" 223 android:layout_gravity="center" /> 224 </LinearLayout> 225 <LinearLayout 226 android:orientation="vertical" 227 android:layout_width="wrap_content" 228 android:layout_height="match_parent"> 229 <com.android.musicfx.SeekBarRotator 230 android:layout_width="wrap_content" 231 android:layout_height="@dimen/eq_slider_height"> 232 <SeekBar 233 android:id="@+id/EQBand9SeekBar" 234 android:layout_margin="@dimen/eq_slider_margin" 235 android:layout_width="match_parent" 236 android:layout_height="match_parent" /> 237 </com.android.musicfx.SeekBarRotator> 238 <TextView 239 android:id="@+id/EQBand9TextView" 240 android:layout_width="50dip" 241 android:layout_height="wrap_content" 242 android:layout_gravity="center" /> 243 </LinearLayout> 244 <LinearLayout 245 android:orientation="vertical" 246 android:layout_width="wrap_content" 247 android:layout_height="match_parent"> 248 <com.android.musicfx.SeekBarRotator 249 android:layout_width="wrap_content" 250 android:layout_height="@dimen/eq_slider_height"> 251 <SeekBar 252 android:id="@+id/EQBand10SeekBar" 253 android:layout_margin="@dimen/eq_slider_margin" 254 android:layout_width="match_parent" 255 android:layout_height="match_parent" /> 256 </com.android.musicfx.SeekBarRotator> 257 <TextView 258 android:id="@+id/EQBand10TextView" 259 android:layout_width="50dip" 260 android:layout_height="wrap_content" 261 android:layout_gravity="center" /> 262 </LinearLayout> 263 <LinearLayout 264 android:orientation="vertical" 265 android:layout_width="wrap_content" 266 android:layout_height="match_parent"> 267 <com.android.musicfx.SeekBarRotator 268 android:layout_width="wrap_content" 269 android:layout_height="@dimen/eq_slider_height"> 270 <SeekBar 271 android:id="@+id/EQBand11SeekBar" 272 android:layout_margin="@dimen/eq_slider_margin" 273 android:layout_width="match_parent" 274 android:layout_height="match_parent" /> 275 </com.android.musicfx.SeekBarRotator> 276 <TextView 277 android:id="@+id/EQBand11TextView" 278 android:layout_width="50dip" 279 android:layout_height="wrap_content" 280 android:layout_gravity="center" /> 281 </LinearLayout> 282 <LinearLayout 283 android:orientation="vertical" 284 android:layout_width="wrap_content" 285 android:layout_height="match_parent"> 286 <com.android.musicfx.SeekBarRotator 287 android:layout_width="wrap_content" 288 android:layout_height="@dimen/eq_slider_height"> 289 <SeekBar 290 android:id="@+id/EQBand12SeekBar" 291 android:layout_margin="@dimen/eq_slider_margin" 292 android:layout_width="match_parent" 293 android:layout_height="match_parent" /> 294 </com.android.musicfx.SeekBarRotator> 295 <TextView 296 android:id="@+id/EQBand12TextView" 297 android:layout_width="50dip" 298 android:layout_height="wrap_content" 299 android:layout_gravity="center" /> 300 </LinearLayout> 301 <LinearLayout 302 android:orientation="vertical" 303 android:layout_width="wrap_content" 304 android:layout_height="match_parent"> 305 <com.android.musicfx.SeekBarRotator 306 android:layout_width="wrap_content" 307 android:layout_height="@dimen/eq_slider_height"> 308 <SeekBar 309 android:id="@+id/EQBand13SeekBar" 310 android:layout_margin="@dimen/eq_slider_margin" 311 android:layout_width="match_parent" 312 android:layout_height="match_parent" /> 313 </com.android.musicfx.SeekBarRotator> 314 <TextView 315 android:id="@+id/EQBand13TextView" 316 android:layout_width="50dip" 317 android:layout_height="wrap_content" 318 android:layout_gravity="center" /> 319 </LinearLayout> 320 <LinearLayout 321 android:orientation="vertical" 322 android:layout_width="wrap_content" 323 android:layout_height="match_parent"> 324 <com.android.musicfx.SeekBarRotator 325 android:layout_width="wrap_content" 326 android:layout_height="@dimen/eq_slider_height"> 327 <SeekBar 328 android:id="@+id/EQBand14SeekBar" 329 android:layout_margin="@dimen/eq_slider_margin" 330 android:layout_width="match_parent" 331 android:layout_height="match_parent" /> 332 </com.android.musicfx.SeekBarRotator> 333 <TextView 334 android:id="@+id/EQBand14TextView" 335 android:layout_width="50dip" 336 android:layout_height="wrap_content" 337 android:layout_gravity="center" /> 338 </LinearLayout> 339 <LinearLayout 340 android:orientation="vertical" 341 android:layout_width="wrap_content" 342 android:layout_height="match_parent"> 343 <com.android.musicfx.SeekBarRotator 344 android:layout_width="wrap_content" 345 android:layout_height="@dimen/eq_slider_height"> 346 <SeekBar 347 android:id="@+id/EQBand15SeekBar" 348 android:layout_margin="@dimen/eq_slider_margin" 349 android:layout_width="match_parent" 350 android:layout_height="match_parent" /> 351 </com.android.musicfx.SeekBarRotator> 352 <TextView 353 android:id="@+id/EQBand15TextView" 354 android:layout_width="50dip" 355 android:layout_height="wrap_content" 356 android:layout_gravity="center" /> 357 </LinearLayout> 358 <LinearLayout 359 android:orientation="vertical" 360 android:layout_width="wrap_content" 361 android:layout_height="match_parent"> 362 <com.android.musicfx.SeekBarRotator 363 android:layout_width="wrap_content" 364 android:layout_height="@dimen/eq_slider_height"> 365 <SeekBar 366 android:id="@+id/EQBand16SeekBar" 367 android:layout_margin="@dimen/eq_slider_margin" 368 android:layout_width="match_parent" 369 android:layout_height="match_parent" /> 370 </com.android.musicfx.SeekBarRotator> 371 <TextView 372 android:id="@+id/EQBand16TextView" 373 android:layout_width="50dip" 374 android:layout_height="wrap_content" 375 android:layout_gravity="center" /> 376 </LinearLayout> 377 <LinearLayout 378 android:orientation="vertical" 379 android:layout_width="wrap_content" 380 android:layout_height="match_parent"> 381 <com.android.musicfx.SeekBarRotator 382 android:layout_width="wrap_content" 383 android:layout_height="@dimen/eq_slider_height"> 384 <SeekBar 385 android:id="@+id/EQBand17SeekBar" 386 android:layout_margin="@dimen/eq_slider_margin" 387 android:layout_width="match_parent" 388 android:layout_height="match_parent" /> 389 </com.android.musicfx.SeekBarRotator> 390 <TextView 391 android:id="@+id/EQBand17TextView" 392 android:layout_width="50dip" 393 android:layout_height="wrap_content" 394 android:layout_gravity="center" /> 395 </LinearLayout> 396 <LinearLayout 397 android:orientation="vertical" 398 android:layout_width="wrap_content" 399 android:layout_height="match_parent"> 400 <com.android.musicfx.SeekBarRotator 401 android:layout_width="wrap_content" 402 android:layout_height="@dimen/eq_slider_height"> 403 <SeekBar 404 android:id="@+id/EQBand18SeekBar" 405 android:layout_margin="@dimen/eq_slider_margin" 406 android:layout_width="match_parent" 407 android:layout_height="match_parent" /> 408 </com.android.musicfx.SeekBarRotator> 409 <TextView 410 android:id="@+id/EQBand18TextView" 411 android:layout_width="50dip" 412 android:layout_height="wrap_content" 413 android:layout_gravity="center" /> 414 </LinearLayout> 415 <LinearLayout 416 android:orientation="vertical" 417 android:layout_width="wrap_content" 418 android:layout_height="match_parent"> 419 <com.android.musicfx.SeekBarRotator 420 android:layout_width="wrap_content" 421 android:layout_height="@dimen/eq_slider_height"> 422 <SeekBar 423 android:id="@+id/EQBand19SeekBar" 424 android:layout_margin="@dimen/eq_slider_margin" 425 android:layout_width="match_parent" 426 android:layout_height="match_parent" /> 427 </com.android.musicfx.SeekBarRotator> 428 <TextView 429 android:id="@+id/EQBand19TextView" 430 android:layout_width="50dip" 431 android:layout_height="wrap_content" 432 android:layout_gravity="center" /> 433 </LinearLayout> 434 <LinearLayout 435 android:orientation="vertical" 436 android:layout_width="wrap_content" 437 android:layout_height="match_parent"> 438 <com.android.musicfx.SeekBarRotator 439 android:layout_width="wrap_content" 440 android:layout_height="@dimen/eq_slider_height"> 441 <SeekBar 442 android:id="@+id/EQBand20SeekBar" 443 android:layout_margin="@dimen/eq_slider_margin" 444 android:layout_width="match_parent" 445 android:layout_height="match_parent" /> 446 </com.android.musicfx.SeekBarRotator> 447 <TextView 448 android:id="@+id/EQBand20TextView" 449 android:layout_width="50dip" 450 android:layout_height="wrap_content" 451 android:layout_gravity="center" /> 452 </LinearLayout> 453 <LinearLayout 454 android:orientation="vertical" 455 android:layout_width="wrap_content" 456 android:layout_height="match_parent"> 457 <com.android.musicfx.SeekBarRotator 458 android:layout_width="wrap_content" 459 android:layout_height="@dimen/eq_slider_height"> 460 <SeekBar 461 android:id="@+id/EQBand21SeekBar" 462 android:layout_margin="@dimen/eq_slider_margin" 463 android:layout_width="match_parent" 464 android:layout_height="match_parent" /> 465 </com.android.musicfx.SeekBarRotator> 466 <TextView 467 android:id="@+id/EQBand21TextView" 468 android:layout_width="50dip" 469 android:layout_height="wrap_content" 470 android:layout_gravity="center" /> 471 </LinearLayout> 472 <LinearLayout 473 android:orientation="vertical" 474 android:layout_width="wrap_content" 475 android:layout_height="match_parent"> 476 <com.android.musicfx.SeekBarRotator 477 android:layout_width="wrap_content" 478 android:layout_height="@dimen/eq_slider_height"> 479 <SeekBar 480 android:id="@+id/EQBand22SeekBar" 481 android:layout_margin="@dimen/eq_slider_margin" 482 android:layout_width="match_parent" 483 android:layout_height="match_parent" /> 484 </com.android.musicfx.SeekBarRotator> 485 <TextView 486 android:id="@+id/EQBand22TextView" 487 android:layout_width="50dip" 488 android:layout_height="wrap_content" 489 android:layout_gravity="center" /> 490 </LinearLayout> 491 <LinearLayout 492 android:orientation="vertical" 493 android:layout_width="wrap_content" 494 android:layout_height="match_parent"> 495 <com.android.musicfx.SeekBarRotator 496 android:layout_width="wrap_content" 497 android:layout_height="@dimen/eq_slider_height"> 498 <SeekBar 499 android:id="@+id/EQBand23SeekBar" 500 android:layout_margin="@dimen/eq_slider_margin" 501 android:layout_width="match_parent" 502 android:layout_height="match_parent" /> 503 </com.android.musicfx.SeekBarRotator> 504 <TextView 505 android:id="@+id/EQBand23TextView" 506 android:layout_width="50dip" 507 android:layout_height="wrap_content" 508 android:layout_gravity="center" /> 509 </LinearLayout> 510 <LinearLayout 511 android:orientation="vertical" 512 android:layout_width="wrap_content" 513 android:layout_height="match_parent"> 514 <com.android.musicfx.SeekBarRotator 515 android:layout_width="wrap_content" 516 android:layout_height="@dimen/eq_slider_height"> 517 <SeekBar 518 android:id="@+id/EQBand24SeekBar" 519 android:layout_margin="@dimen/eq_slider_margin" 520 android:layout_width="match_parent" 521 android:layout_height="match_parent" /> 522 </com.android.musicfx.SeekBarRotator> 523 <TextView 524 android:id="@+id/EQBand24TextView" 525 android:layout_width="50dip" 526 android:layout_height="wrap_content" 527 android:layout_gravity="center" /> 528 </LinearLayout> 529 <LinearLayout 530 android:orientation="vertical" 531 android:layout_width="wrap_content" 532 android:layout_height="match_parent"> 533 <com.android.musicfx.SeekBarRotator 534 android:layout_width="wrap_content" 535 android:layout_height="@dimen/eq_slider_height"> 536 <SeekBar 537 android:id="@+id/EQBand25SeekBar" 538 android:layout_margin="@dimen/eq_slider_margin" 539 android:layout_width="match_parent" 540 android:layout_height="match_parent" /> 541 </com.android.musicfx.SeekBarRotator> 542 <TextView 543 android:id="@+id/EQBand25TextView" 544 android:layout_width="50dip" 545 android:layout_height="wrap_content" 546 android:layout_gravity="center" /> 547 </LinearLayout> 548 <LinearLayout 549 android:orientation="vertical" 550 android:layout_width="wrap_content" 551 android:layout_height="match_parent"> 552 <com.android.musicfx.SeekBarRotator 553 android:layout_width="wrap_content" 554 android:layout_height="@dimen/eq_slider_height"> 555 <SeekBar 556 android:id="@+id/EQBand26SeekBar" 557 android:layout_margin="@dimen/eq_slider_margin" 558 android:layout_width="match_parent" 559 android:layout_height="match_parent" /> 560 </com.android.musicfx.SeekBarRotator> 561 <TextView 562 android:id="@+id/EQBand26TextView" 563 android:layout_width="50dip" 564 android:layout_height="wrap_content" 565 android:layout_gravity="center" /> 566 </LinearLayout> 567 <LinearLayout 568 android:orientation="vertical" 569 android:layout_width="wrap_content" 570 android:layout_height="match_parent"> 571 <com.android.musicfx.SeekBarRotator 572 android:layout_width="wrap_content" 573 android:layout_height="@dimen/eq_slider_height"> 574 <SeekBar 575 android:id="@+id/EQBand27SeekBar" 576 android:layout_margin="@dimen/eq_slider_margin" 577 android:layout_width="match_parent" 578 android:layout_height="match_parent" /> 579 </com.android.musicfx.SeekBarRotator> 580 <TextView 581 android:id="@+id/EQBand27TextView" 582 android:layout_width="50dip" 583 android:layout_height="wrap_content" 584 android:layout_gravity="center" /> 585 </LinearLayout> 586 <LinearLayout 587 android:orientation="vertical" 588 android:layout_width="wrap_content" 589 android:layout_height="match_parent"> 590 <com.android.musicfx.SeekBarRotator 591 android:layout_width="wrap_content" 592 android:layout_height="@dimen/eq_slider_height"> 593 <SeekBar 594 android:id="@+id/EQBand28SeekBar" 595 android:layout_margin="@dimen/eq_slider_margin" 596 android:layout_width="match_parent" 597 android:layout_height="match_parent" /> 598 </com.android.musicfx.SeekBarRotator> 599 <TextView 600 android:id="@+id/EQBand28TextView" 601 android:layout_width="50dip" 602 android:layout_height="wrap_content" 603 android:layout_gravity="center" /> 604 </LinearLayout> 605 <LinearLayout 606 android:orientation="vertical" 607 android:layout_width="wrap_content" 608 android:layout_height="match_parent"> 609 <com.android.musicfx.SeekBarRotator 610 android:layout_width="wrap_content" 611 android:layout_height="@dimen/eq_slider_height"> 612 <SeekBar 613 android:id="@+id/EQBand29SeekBar" 614 android:layout_margin="@dimen/eq_slider_margin" 615 android:layout_width="match_parent" 616 android:layout_height="match_parent" /> 617 </com.android.musicfx.SeekBarRotator> 618 <TextView 619 android:id="@+id/EQBand29TextView" 620 android:layout_width="50dip" 621 android:layout_height="wrap_content" 622 android:layout_gravity="center" /> 623 </LinearLayout> 624 <LinearLayout 625 android:orientation="vertical" 626 android:layout_width="wrap_content" 627 android:layout_height="match_parent"> 628 <com.android.musicfx.SeekBarRotator 629 android:layout_width="wrap_content" 630 android:layout_height="@dimen/eq_slider_height"> 631 <SeekBar 632 android:id="@+id/EQBand30SeekBar" 633 android:layout_margin="@dimen/eq_slider_margin" 634 android:layout_width="match_parent" 635 android:layout_height="match_parent" /> 636 </com.android.musicfx.SeekBarRotator> 637 <TextView 638 android:id="@+id/EQBand30TextView" 639 android:layout_width="50dip" 640 android:layout_height="wrap_content" 641 android:layout_gravity="center" /> 642 </LinearLayout> 643 <LinearLayout 644 android:orientation="vertical" 645 android:layout_width="wrap_content" 646 android:layout_height="match_parent"> 647 <com.android.musicfx.SeekBarRotator 648 android:layout_width="wrap_content" 649 android:layout_height="@dimen/eq_slider_height"> 650 <SeekBar 651 android:id="@+id/EQBand31SeekBar" 652 android:layout_margin="@dimen/eq_slider_margin" 653 android:layout_width="match_parent" 654 android:layout_height="match_parent" /> 655 </com.android.musicfx.SeekBarRotator> 656 <TextView 657 android:id="@+id/EQBand31TextView" 658 android:layout_width="50dip" 659 android:layout_height="wrap_content" 660 android:layout_gravity="center" /> 661 </LinearLayout> 662</LinearLayout> 663