48 lines
1.6 KiB
XML
48 lines
1.6 KiB
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<LinearLayout
|
||
|
xmlns:a="http://schemas.android.com/apk/res/android"
|
||
|
a:orientation="vertical"
|
||
|
a:layout_width="fill_parent"
|
||
|
a:layout_height="fill_parent"
|
||
|
a:background="@drawable/album_art_background"
|
||
|
a:padding="16dip">
|
||
|
|
||
|
<CheckBox
|
||
|
a:id="@+id/equalizer_enabled"
|
||
|
a:layout_width="wrap_content"
|
||
|
a:layout_height="wrap_content"
|
||
|
a:text="@string/equalizer.enabled"
|
||
|
a:textColor="#c0c0c0"
|
||
|
a:textAppearance="?android:attr/textAppearanceMedium"/>
|
||
|
|
||
|
<ScrollView
|
||
|
a:layout_width="fill_parent"
|
||
|
a:layout_height="wrap_content">
|
||
|
|
||
|
<LinearLayout
|
||
|
a:orientation="vertical"
|
||
|
a:layout_width="fill_parent"
|
||
|
a:layout_height="wrap_content">
|
||
|
|
||
|
<LinearLayout
|
||
|
a:id="@+id/equalizer_layout"
|
||
|
a:orientation="vertical"
|
||
|
a:layout_width="fill_parent"
|
||
|
a:layout_height="wrap_content"/>
|
||
|
|
||
|
<Button
|
||
|
a:id="@+id/equalizer_preset"
|
||
|
a:text="@string/equalizer.preset"
|
||
|
a:layout_width="wrap_content"
|
||
|
a:layout_height="wrap_content"
|
||
|
a:layout_gravity="center"
|
||
|
a:layout_marginTop="20dip"
|
||
|
a:paddingLeft="40dip"
|
||
|
a:paddingRight="40dip"/>
|
||
|
|
||
|
</LinearLayout>
|
||
|
</ScrollView>
|
||
|
|
||
|
</LinearLayout>
|
||
|
|