add layout programmatically in android button click

670 Views Asked by At

I have a XML layout file. This is the source

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/mainlayout"
android:layout_width="wrap_content"
android:layout_height="match_parent" >

<RelativeLayout
    android:id="@+id/rot"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_alignParentLeft="true"
    android:layout_alignParentTop="true"
    android:background="#ff0000" >

    <ImageView
        android:id="@+id/btn_categorry"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentRight="true"
        android:layout_alignParentTop="true"
        android:layout_marginRight="12dp"
        android:background="@drawable/ic_launcher" />
</RelativeLayout>

I wrote some code which can add new layout programmatically and I also added(created) image view in layout programmatically. I want to wrote code witch would can add new layout programmatically. For more information. I want to create new layout each image view click witch I created programmatically.

This is a my source

public class MainActivity extends Activity {
RelativeLayout myImage, mainlayout;
private ImageView img;
RelativeLayout staticlayout;
RelativeLayout.LayoutParams parms;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    myImage = (RelativeLayout) findViewById(R.id.rot);
    mainlayout = (RelativeLayout) findViewById(R.id.mainlayout);

    img = (ImageView) findViewById(R.id.btn_categorry);

    parms = new RelativeLayout.LayoutParams(
            RelativeLayout.LayoutParams.FILL_PARENT,
            RelativeLayout.LayoutParams.WRAP_CONTENT);

    img.setOnClickListener(new OnClickListener() {

        @Override
        public void onClick(View v) {

            staticlayout = new RelativeLayout(getApplicationContext());
            staticlayout.setBackgroundColor(Color.parseColor("#000000"));

            ImageView add_btn = new ImageView(getApplicationContext());
            add_btn.setBackgroundResource(R.drawable.ic_launcher);

            RelativeLayout.LayoutParams parms2 = new RelativeLayout.LayoutParams(
                    RelativeLayout.LayoutParams.WRAP_CONTENT,
                    RelativeLayout.LayoutParams.WRAP_CONTENT);
            parms2.addRule(RelativeLayout.ALIGN_PARENT_RIGHT);
            parms2.addRule(RelativeLayout.CENTER_HORIZONTAL);
            //
            //
            add_btn.setLayoutParams(parms2);
            add_btn.setOnClickListener(new listener());
            staticlayout.setId(10);
            staticlayout.addView(add_btn);

            parms.addRule(RelativeLayout.BELOW, R.id.rot);



            staticlayout.setLayoutParams(parms);
            mainlayout.addView(staticlayout);

            // parms.addRule(RelativeLayout.BELOW, R.id.rot);

        }
    });

}

class listener implements OnClickListener {

    @Override
    public void onClick(View v) {
        RelativeLayout.LayoutParams costomparam = new RelativeLayout.LayoutParams(
                RelativeLayout.LayoutParams.FILL_PARENT,
                RelativeLayout.LayoutParams.WRAP_CONTENT);
        RelativeLayout relativelayout = new RelativeLayout(
                getApplicationContext());
        relativelayout.setBackgroundColor(Color.parseColor("#AB3232"));

        ImageView add_btn = new ImageView(getApplicationContext());
        add_btn.setBackgroundResource(R.drawable.ic_launcher);

        RelativeLayout.LayoutParams imagelayoutparam = new RelativeLayout.LayoutParams(
                RelativeLayout.LayoutParams.WRAP_CONTENT,
                RelativeLayout.LayoutParams.WRAP_CONTENT);
        imagelayoutparam.addRule(RelativeLayout.ALIGN_PARENT_RIGHT);
        imagelayoutparam.addRule(RelativeLayout.CENTER_HORIZONTAL);
        add_btn.setOnClickListener(new listener());

        //
        //
        add_btn.setLayoutParams(imagelayoutparam);
        relativelayout.addView(add_btn);

        costomparam.addRule(RelativeLayout.BELOW, staticlayout.getId());

        relativelayout.setLayoutParams(costomparam);
        mainlayout.addView(relativelayout);

    }
}

}

My code can create new layout and also can create new layout in image view click. How can I write code to can create new layout automatically each time when I click image view? If anyone knows solution please help me.

0

There are 0 best solutions below