summaryrefslogtreecommitdiffstats
path: root/res/layout/equalizer.xml
blob: 0f2a61328ec58eea672e2bb796ef7b0802492a52 (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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<?xml version="1.0" encoding="utf-8"?>

<com.cyngn.audiofx.eq.EqSwipeController
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/swipe_interceptor"
        android:orientation="vertical"
        android:layout_width="match_parent"
        android:layout_height="match_parent">
    <include
            layout="@layout/eq_container"
            android:layout_weight="1"
            android:layout_width="match_parent"
            android:layout_height="0dp"/>

    <LinearLayout
            android:orientation="vertical"
            android:id="@+id/preset_container"
            android:layout_width="match_parent"
            android:layout_height="wrap_content">

        <com.cyngn.audiofx.preset.InfiniteViewPager
                android:id="@+id/pager"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
        />

        <com.cyngn.audiofx.viewpagerindicator.CirclePageIndicator
                android:id="@+id/indicator"
                android:padding="10dip"
                android:layout_height="wrap_content"
                android:layout_width="match_parent"
        />

        <android.support.v4.view.ViewPager
                android:layout_height="0dp"
                android:layout_width="0dp"
                android:visibility="gone"
                android:id="@+id/fake_pager"
        />

    </LinearLayout>
</com.cyngn.audiofx.eq.EqSwipeController>