Well I guess I ran into some bugs.
There seems to be a bug with Bitmaps in LayerLists: http://www.michaelpardo.com/2011/10/repeating-bitmaps-inside-layerlists/
I have Layer-List that I want to use as a Background-Drawable in my custom titlebar.
<style name="custom_titlebar_background">
<item name="android:background">@drawable/custom_titlebar_background</item>
</style>
EDIT: To use the linked workaround I need to set the background of the titlebar programmatically, but I have no idea how. This doesn't seem to work, It changes the background of the whole screen (including the actual content view):
LayerDrawable layer = (LayerDrawable)getResources().getDrawable(R.drawable.custom_titlebar_background);
setLayerDrawableBitmapsRepeating(layer);
getWindow().setBackgroundDrawable(layer);
Is there any way to get a reference to a custom titlebar to call setBackgroundDrawable() or any other way to set the background of a custom titlebar?