Adding CM Visualizer on TW MM
Here is the link just follow the guide then
http://forum.xda-developers.com/showthread.php?t=3070550
After u finish the guide there now
Add this in navigation_bar.xml ( i found 2 xml & added in both ) at the end of the xml ,,
<com.adi.rom.interface.MusicEqualizerVisualizer android:layout_gravity="bottom" android:id="@id/new_visualizer_view_panel" android:layout_width="fill_parent" android:layout_height="fill_parent" android:layout_marginBottom="0.0dip">
<FrameLayout android:id="@id/new_custom_visualizer_view_panel" android:layout_width="fill_parent" android:layout_height="fill_parent">
<com.adi.rom.interface.VisualizerView android:id="@id/new_custom_visualizer_view" android:visibility="gone" android:layout_width="fill_parent" android:layout_height="fill_parent" />
</FrameLayout>
</com.adi.rom.interface.MusicEqualizerVisualizer>
Now if u didn't see it worked then u need clean install rom to get it working perfectly
Rc
In arrays.xml
<string-array name="visualizer_style_entries">
<item>Hide</item>
<item>Random</item>
<item>Circular</item>
<item>Lines</item>
<item>Top Bottom Graphic</item>
<item>Circle</item>
<item>Cycle Color Graphic</item>
<item>CyanogenMod</item>
</string-array>
<string-array name="visualizer_style_values">
<item>0</item>
<item>1</item>
<item>2</item>
<item>3</item>
<item>4</item>
<item>5</item>
<item>6</item>
<item>7</item>
</string-array>
& this where u want like ui_prefs.xml
<PreferenceCategory android:title=" CM Music Visualizer " />
<CheckBoxPreference android:title="Music Visualizer" android:key="show_equalizer" android:summary="Enable Notification Panel Music Visualizer." android:defaultValue="false" />
<com.wubydax.romcontrol.prefs.MyListPreference android:entries="@array/visualizer_style_entries" android:title="Choose Visualizer Style" android:key="equalizer_visualizer_style" android:summary="%s" android:dependency="show_equalizer" android:defaultValue="0" android:dialogTitle="Select Visualizer" android:entryValues="@array/visualizer_style_values" />
Ss ::