This one is the UD SystemUI/res/layout/status_bar_tracking.xml
<?xml version="1.0" encoding="UTF-8"?>
<com.android.systemui.statusbar.TrackingView android
rientation="vertical" android
addingLeft="0.0px" android
addingRight="0.0px" android
addingBottom="0.0px" android:focusable="true" android:visibility="gone" android:descendantFocusability="afterDescendants"
xmlns:android="
http://schemas.android.com/apk/res/android">
<View
android:background="@drawable/shade_bg" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_weight="1.0" />
<com.android.systemui.statusbar.CloseDragHandle android
rientation="vertical" android:id="@id/close" android:layout_width="fill_parent" android:layout_height="wrap_content">
<ImageView android:layout_gravity="bottom" android:layout_width="fill_parent" android:layout_height="wrap_content" android:src="@drawable/status_bar_close_on" android:scaleType="fitXY" />
</com.android.systemui.statusbar.CloseDragHandle>
</com.android.systemui.statusbar.TrackingView>
----------------------------------------------------
and here is the same one from LGB
<?xml version="1.0" encoding="UTF-8"?>
<com.android.systemui.statusbar.TrackingView android
rientation="vertical" android
addingLeft="0.0px" android
addingRight="0.0px" android
addingBottom="0.0px" android:focusable="true" android:visibility="gone" android:descendantFocusability="afterDescendants"
xmlns:android="
http://schemas.android.com/apk/res/android">
<View
android:background="#cc000000" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_weight="1.0" />
<com.android.systemui.statusbar.CloseDragHandle android
rientation="vertical" android:id="@id/close" android:layout_width="fill_parent" android:layout_height="wrap_content">
<ImageView android:layout_gravity="bottom" android:layout_width="fill_parent" android:layout_height="wrap_content" android:src="@drawable/status_bar_close_on" android:scaleType="fitXY" />
</com.android.systemui.statusbar.CloseDragHandle>
</com.android.systemui.statusbar.TrackingView>
That's the only place I found shade_bg in SystemUI anywhere so I'm just assuming that I'm correct... the lgb one is pointing to a color code instead of the png... I swapped those xml's out as a 'fix' for Liquid's gb rom but I never tested it to see if it'd work...
EDIT:.. as you know, SystemUI errors on decompiling so it's difficult to really fix it...