summaryrefslogtreecommitdiffstats
path: root/res/layout/fragment_audiofx.xml
blob: cf78ebf206d4529889500b4c280da8e41994ac72 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?xml version="1.0" encoding="utf-8"?>

<org.cyanogenmod.audiofx.widget.InterceptableLinearLayout
        xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:custom="http://schemas.android.com/apk/res/org.cyanogenmod.audiofx"
        android:id="@+id/interceptable_layout"
        android:orientation="vertical"
        android:layout_width="match_parent"
        android:layout_height="match_parent">

    <!-- equalizer layout -->
    <FrameLayout class="org.cyanogenmod.audiofx.fragment.EqualizerFragment"
              android:id="@+id/equalizer"
              android:layout_weight="1"
              android:layout_width="match_parent"
              android:layout_height="0dp"/>

    <!-- knobs -->
    <FrameLayout class="org.cyanogenmod.audiofx.fragment.ControlsFragment"
              android:id="@+id/controls"
              android:layout_weight="0"
              android:layout_width="match_parent"
              android:layout_height="160dp"/>

</org.cyanogenmod.audiofx.widget.InterceptableLinearLayout>