Search code examples
androidandroid-layout

how to place an image over another one on android app?


how i can put im2 in the correct place

FrameLayout rv =(FrameLayout)findViewById(R.id.my_ph);


    ImageView im1 = new ImageView(this);
    im1.setBackgroundResource(R.drawable.lamp_on);
    im1.layout(100, 100,120, 120);

    rv.addView(im1);

my layout

<FrameLayout android:id="@+id/my_ph" xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<ImageView  
android:id="@+id/image"
android:layout_width="wrap_content" 
android:layout_height="wrap_content" 
android:background="@drawable/sketch" />
</FrameLayout>

i want that im1 will be on top of the ImageView in position x,y


Solution

  • and the answer....

     RelativeLayout rv = (RelativeLayout) findViewById(R.id.my_ph);
     RelativeLayout.LayoutParams params;
     ImageButton im1 = new ImageButton(this);
    
     im1.setBackgroundResource(R.drawable.lamp);
     im1.setId(i);
     im1.setOnClickListener(new OnClickListener() {
         public void onClick(View v) {
            TextView tx = (TextView) findViewById(R.id.textView1);
            tx.setText("lamp #" + v.getId());
         }
     });
    
     params = new RelativeLayout.LayoutParams(40, 40);
     params.leftMargin = x;
     params.topMargin = y;
     rv.addView(im1, params);
    

    XML Layout:

     <RelativeLayout 
                android:id="@+id/my_ph"
                xmlns:android="http://schemas.android.com/apk/res/android"
                android:layout_width="wrap_content" 
                android:layout_height="wrap_content" 
                android:gravity="bottom">
        <ImageView 
                android:id="@+id/image" 
                android:layout_width="wrap_content"
                android:layout_height="wrap_content" 
                android:layout_alignParentTop="true"
                android:background="@drawable/map" />
        <TextView 
                android:id="@+id/textView1" 
                android:layout_width="wrap_content"  
                android:layout_height="wrap_content"
                android:textAppearance="?android:attr/textAppearanceLarge"
                android:layout_below="@+id/image" 
                android:layout_alignParentLeft="true">
        </TextView>
    
     </RelativeLayout>