2016-11-13 9 views
1

私はAndroid開発の初心者です。 ButtonとImageViewをFrameLayoutの内側に配置しようとしていますが、それらは見えません(レイアウトには存在しますが描画されません)。FrameLayoutの要素は見えません

マイレイアウト:

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" 
android:id="@+id/OuterFrame" 
android:layout_width="match_parent" 
android:layout_height="match_parent" 
android:foreground="@drawable/flb1_off"> 

<LinearLayout 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:orientation="vertical"> 

    <Button 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:text="@string/show_dialog" 
     android:id="@+id/showDialogBtn" 
     android:onClick="showDialog" 
     android:layout_gravity="center" 
     android:background="#123456" 
     android:textColor="@color/abc_background_cache_hint_selector_material_dark" 
     android:visibility="visible" /> 

    <ImageView 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:src="@drawable/flb" 
     android:layout_gravity="bottom" 
     android:contentDescription="@string/content_desc" /> 

</LinearLayout> 

APIバージョンが19 興味深いのは、[OK]を作品はclickHandlerそのボタンですが、ボタン自体は見えません。

私はすべての子供を前述のhereのように単一の子ビューにしましたが、成功しませんでした。

私は間違っていますか?

+2

私は 'android:foreground =" @ drawable/flb1_off "'が問題だと思います。 –

+0

@SHAHMDMONIRULISLAM、あなたは正しいです!置換アンドロイド:フォアグラウンドtoアンドロイド:背景固定! – Nicolas

+0

回答を追加しました。それを受け入れることができますか? @Nicolas –

答えて

0

あなたの問題は、このラインから来ている:

android:foreground="@drawable/flb1_off" 

は、あなたはそれを変更する必要があります。

0

代理アンドロイド:アンドロイドへのフォアグラウンド:背景は固定されており、SHAH MD MONIRUL ISLAMが提供されています。

関連する問題