Суть проблемы - непонятно почему взялся черный фон у кнопок. Я такое раньше на некоторых устройствах видел в приложении "плей маркет".
Как отображается на моем устройстве(4.4.2):
Как отображается на другом устройстве(4.2.2):
Вот кусок xml отвечающий за кнопки:
<LinearLayout android:orientation="horizontal" android:layout_width="fill_parent" android:layout_height="wrap_content">
<ImageButton android:id="@id/advanced_button" android:layout_width="wrap_content" android:layout_height="32dp" android:paddingRight="8.0dip" android:paddingLeft="4.0dip" style="?right_separator" android:layout_marginTop="4dp" android:layout_marginBottom="4dp" android:src="@drawable/btn_show_post_panel" />
<Button android:id="@id/btnAttachments" android:paddingRight="8.0dip" android:paddingLeft="8.0dip" style="?right_separator" android:layout_width="wrap_content" android:layout_height="32dp" android:text="0" android:layout_marginRight="4dp" android:layout_centerVertical="true" android:drawableLeft="@drawable/ic_menu_attachment" android:textColor="#ff9D9D9D" />
<Button android:id="@id/btnSendPost" style="?btnsend" android:layout_width="fill_parent" android:layout_height="40dp" android:text="Отправить" android:textColor="#ffffffff"/>
</LinearLayout>
Вот right_separaor:
<layer-list
xmlns:android="http://schemas.android.com/apk/res/android">
<item android:top="-3px" android:bottom="-3px" android:left="-3px">
<shape android:shape="rectangle">
<stroke android:width="3px" android:color="@color/right_separator_color_bl" />
</shape>
</item>
</layer-list>
В принципе есть предположения что это может быть и куда нужно копать, но вдруг кто-то уже сталкивался с таким и может сказать что надо сделать.