summaryrefslogtreecommitdiffstats
path: root/res/layout-land/generic_knob_control.xml
blob: 38883e1ab883e46ae1120a8e764ade2a8945af99 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
             android:layout_width="wrap_content"
             android:layout_height="wrap_content"
             android:layout_weight="0"
             android:layout_gravity="center_vertical"
             android:paddingBottom="@dimen/knob_container_padding_bottom">

    <com.cyngn.audiofx.knobs.RadialKnob
            android:id="@+id/knob"
            android:layout_gravity="top|center_horizontal"
            android:layout_width="wrap_content"
            android:layout_height="@dimen/knob_width" />

    <TextView
            android:id="@+id/label"
            android:layout_height="22dp"
            android:layout_gravity="bottom|center_horizontal"
            android:layout_width="wrap_content"/>

</FrameLayout>