android_mt6572_jiabo/packages/apps/AudioFX/res/layout/eq_container.xml
2025-09-05 16:56:03 +08:00

57 lines
2 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<org.cyanogenmod.audiofx.eq.EqContainerView
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/eq_container"
android:layout_width="match_parent"
android:layout_height="match_parent">
<FrameLayout
android:id="@+id/eq_controls"
android:padding="4dp"
android:alpha="0"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:id="@+id/remove"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/ic_content_clear"
android:paddingRight="12dp"
/>
<ImageView
android:id="@+id/rename"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/ic_content_create"
android:paddingRight="12dp"
/>
<CheckBox
android:id="@+id/lock"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:button="@drawable/toggle_lock"
/>
</LinearLayout>
<LinearLayout
android:layout_gravity="right"
android:layout_width="wrap_content"
android:layout_height="match_parent">
<ImageView
android:id="@+id/save"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/ic_content_add_circle_outline"
/>
</LinearLayout>
</FrameLayout>
</org.cyanogenmod.audiofx.eq.EqContainerView>