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> 

ここは私の透明な描画可能なイメージです。 enter image description here

イメージ

+0

正確に何が起こったのかわかるように、スクリーンショットを追加できますか? –

+0

背景に何も表示されません。私はバックグラウンドのために使用しているdrawableで私の質問を更新しました。 –

答えて

0

がプログラムにそれをやってみ..いくつかのテキストと1つの矢印があります。

relativeLayout.setBackgroundResource(R.drawable.ic_your_image); 
+0

Kitkat 4.4.2でのみ動作していません –