Hi!
Just wanna share simple mod: how to show task manager panel to statusbar expanded
Should work on stock or any custom rom using stock SystemUI
Requirement: rooted device & know how to decompile, recompile, sign apk
Steps
- decompile SystemUI.apk
- open res/values/bools.xml
- find
- change it to
- open res/layout/status_bar_expanded_header.xml
- find
- change them to
- save all changes
- recompile, sign, push
- done
Screenshoot

Just wanna share simple mod: how to show task manager panel to statusbar expanded
Should work on stock or any custom rom using stock SystemUI
Requirement: rooted device & know how to decompile, recompile, sign apk
Steps
- decompile SystemUI.apk
- open res/values/bools.xml
- find
Code:
<bool name="config_showTaskManagerSwitcher">false</bool>Code:
<bool name="config_showTaskManagerSwitcher">true</bool>- find
Code:
<ImageButton android:id="@id/task_manager_button" android:visibility="gone" android:layout_width="48.0dip" android:layout_height="@dimen/status_bar_header_height" android:src="@drawable/ic_tasklist_switch_normal" android:layout_marginStart="8.0dip" android:layout_toStartOf="@id/settings_button" style="@android:style/Widget.Material.Button.Borderless" />
<ImageButton android:id="@id/somc_qs_button" android:background="@drawable/ripple_drawable" android:layout_width="@dimen/multi_user_switch_width_collapsed" android:layout_height="@dimen/status_bar_header_height" android:src="@drawable/ic_edit_settings" android:contentDescription="@string/accessibility_desc_edit_quick_settings" android:layout_toStartOf="@id/settings_button" style="@android:style/Widget.Material.Button.Borderless" />Code:
<ImageButton android:id="@id/task_manager_button" android:background="@drawable/ripple_drawable" android:visibility="gone" android:layout_width="@dimen/multi_user_switch_width_collapsed" android:layout_height="@dimen/status_bar_header_height" android:src="@drawable/ic_tasklist_switch_normal" android:layout_toStartOf="@id/settings_button" style="@android:style/Widget.Material.Button.Borderless" />
<ImageButton android:id="@id/somc_qs_button" android:background="@drawable/ripple_drawable" android:layout_width="@dimen/multi_user_switch_width_collapsed" android:layout_height="@dimen/status_bar_header_height" android:src="@drawable/ic_edit_settings" android:contentDescription="@string/accessibility_desc_edit_quick_settings" android:layout_toStartOf="@id/task_manager_button" style="@android:style/Widget.Material.Button.Borderless" />- recompile, sign, push
- done
Screenshoot
Aucun commentaire:
Enregistrer un commentaire