如何互相重叠两个图像

时间:2013-08-20 09:50:48

标签: android

如何在图片上方添​​加图片?这是我的屏幕截图http://imgur.com/Yh4DqnJ,它在背景中只有1张图像现在我想添加两个图像按钮,如下图http://imgur.com/XrLXb0L下面是我的代码,只有背景图像  下面是我的代码有背景imeage onheader Linearlayout如何在左侧和右侧添加两个图像?

   <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="#ffffff"
    android:orientation="vertical" >


        <LinearLayout

  android:layout_width="fill_parent"
  android:layout_height="wrap_content"
   android:background="@drawable/imagelogo2"

  android:orientation="horizontal" >




      </LinearLayout>



      <LinearLayout
        android:id="@+id/lytContent"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_above="@+id/txtCopyright"
        android:layout_marginTop="10dp"
         android:background="@drawable/border2" 
        android:layout_below="@+id/lytTitlebar"
        android:orientation="vertical" >



        <ListView
            android:id="@+id/listMainMenu"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"

            android:listSelector="@drawable/listview_selector"
            android:dividerHeight="1dip"
            android:fadeScrollbars="true" />
     </LinearLayout>



    </LinearLayout>

2 个答案:

答案 0 :(得分:1)

使用重叠图像的最佳方法是通过帧布局 试试这段代码

<FrameLayout 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent" 
    xmlns:android="http://schemas.android.com/apk/res/android">
    <ImageView 
        android:src="@drawable/onlymobilepro"
        android:scaleType="fitCenter"
        android:layout_height="fill_parent"
        android:layout_width="fill_parent"/>
    <TextView
        android:text="This is Frame Layout!!!"
        android:textSize="24px"
        android:textColor="#cc0000"
        android:layout_height="fill_parent"
        android:layout_width="fill_parent"
        android:gravity="top"/>
    <TextView
        android:text="Learn Android Development At onlyMobilePro.com"
        android:textSize="24px"
        android:textColor="#00dd00"
        android:layout_height="fill_parent"
        android:layout_width="fill_parent"
        android:gravity="center"/>
</FrameLayout>

答案 1 :(得分:0)

对于重叠图像,您应该使用Framelayout, 有关帧布局的更多信息,请参阅此link