0

こんにちは!ビューの背景として画像を使用したいのですが、問題は、画像を使用すると(色が完全に機能する)、背景が要素の上に配置されるため、何も表示されないことです。

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".Greet"
    android:background="@drawable/fondo_panel" >

    <ImageView android:layout_height="wrap_content" 
    android:layout_width="match_parent" 
    android:src="@drawable/logo_panel"/>

</RelativeLayout>

何が問題なのか知っていますか?どうもありがとう!

4

1 に答える 1

1

画像を背景としてRelativeLayoutに追加してみませんか?したがって、ImageViewは必要なく、重複するものはありません。

<RelativeLayout 
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".Greet"
    android:background="@drawable/logo_panel" >

</RelativeLayout>
于 2013-03-08T13:07:27.713 に答える