0
レイアウトのバックグラウンドで透明な描画可能イメージを設定していますが、Lollipop +デバイスでうまくいきますが、背景はPre-Lollipopデバイスには表示されません。 私の.xml
コードです。KitKatの透明な背景イメージ(Drawable)4.4.2
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:visibility="visible"
android:layout_below="@id/toolbar"
android:id="@+id/emptyWorkFlowImage">
<ImageView
android:layout_width="434dp"
android:layout_height="210dp"
android:src="@drawable/bg_empty_sequence_list"
android:id="@+id/ivEmptyLayout"/>
</RelativeLayout>
イメージ
正確に何が起こったのかわかるように、スクリーンショットを追加できますか? –
背景に何も表示されません。私はバックグラウンドのために使用しているdrawableで私の質問を更新しました。 –