Okay, your signal_cluster_view.xml contains this line:
<LinearLayout android:id="@id/mobile_signal_group" android:layout_width="wrap_content" android:layout_height="wrap_content" />
<?xml version="1.0" encoding="utf-8"?> <FrameLayout android:id="@id/mobile_combo" android:layout_width="wrap_content" android:layout_height="wrap_content" xmlns:android="http://schemas.android.com/apk/res/android" xmlns:systemui="http://schemas.android.com/apk/res-auto"> <com.android.systemui.statusbar.AnimatedImageView android:theme="@style/DualToneLightTheme" android:id="@id/mobile_signal" android:layout_width="wrap_content" android:layout_height="wrap_content" systemui:hasOverlappingRendering="false" /> <com.android.systemui.statusbar.AnimatedImageView android:theme="@style/DualToneDarkTheme" android:id="@id/mobile_signal_dark" android:layout_width="wrap_content" android:layout_height="wrap_content" android:alpha="0.0" systemui:hasOverlappingRendering="false" /> <ImageView android:id="@id/mobile_type" android:layout_width="wrap_content" android:layout_height="wrap_content" /> <ImageView android:id="@id/mobile_roaming" android:paddingTop="1.5dip" android:paddingBottom="3.0dip" android:visibility="gone" android:layout_width="wrap_content" android:layout_height="17.0dip" android:src="@drawable/stat_sys_roaming" android:scaleType="fitCenter" android:contentDescription="@string/accessibility_data_connection_roaming" android:paddingStart="22.0dip" /> </FrameLayout>
Try changing that FrameLayout to a LinearLayout and that should put the icons next to each other.
You may want to consider redrawing the icons though. These are now Android Vector Drawables which are XML files in the drawable. You can either edit the existing code in those files (complicated), replace the code with brand new code (less complicated but still takes time) or delete the XML files completely and create your own PNG files instead. These will need to be in the suitable drawable-?dpi folder and have the same filenames.
The above paragraph is simple but it does involve a bit of thought and time.
