Set programmatically margin in android?

A.A picture A.A · Sep 28, 2014 · Viewed 9.4k times · Source

I have bellow xml . In this xml i need that set MarginTop "@+id/imgFooter" programatically toward "@+id/imgCenter" .But i Can't . My XML :

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:id="@+id/rLayout"
    android:background="@drawable/backrepeat">


        <ImageView
            android:id="@+id/imgHeader"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:contentDescription="One"
            android:layout_alignParentTop="true"
            android:adjustViewBounds="true"
            android:layout_centerHorizontal="true"
            android:src="@drawable/header" />

        <ImageView
            android:id="@+id/imgCenter"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_below="@+id/imgHeader"
            android:layout_above="@+id/imgFooter"
            android:contentDescription="Two"
            android:src="@drawable/center" />


        <ImageView
            android:id="@+id/imgFooter"
            android:contentDescription="Three"
            android:layout_alignParentBottom="true"
            android:adjustViewBounds="true"
            android:layout_centerHorizontal="true"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:src="@drawable/footer" />


</RelativeLayout>

My MainActivity.class :

public class StartPage extends Activity{
    ImageView imgHeader;
    ImageView imgFooter;
    DisplayMetrics metrics;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.start_page);
                imgHeader = (ImageView) findViewById(R.id.imgHeader);

        metrics = new DisplayMetrics();
        getWindowManager().getDefaultDisplay().getMetrics(metrics);

        int width = metrics.widthPixels;
        int height = metrics.heightPixels;     

        int MPTopBottomHeader = (98 * width) / 1080;
        int MPLeftRightHeader = (110 * height) / 1920; 


        RelativeLayout.LayoutParams lpimgHeader = new RelativeLayout.LayoutParams(imgHeader.getLayoutParams());
        lpimgHeader.setMargins(MPLeftRightHeader, MPTopBottomHeader, MPLeftRightHeader, MPTopBottomHeader);
        imgHeader.setLayoutParams(lpimgHeader);

        imgFooter = (ImageView) findViewById(R.id.imgFooter);

        int MPTopBottomFooter = (185 * width) / 1080;
        int MPLeftRightFooter = (260 * height) / 1920; 

===== HERE ======>RelativeLayout.LayoutParams lpimgFooter = new RelativeLayout.LayoutParams(imgFooter.getLayoutParams()); 
        lpimgFooter.setMargins(MPLeftRightFooter, MPTopBottomFooter, MPLeftRightFooter, MPTopBottomFooter);
        imgFooter.setLayoutParams(lpimgFooter);
    }
}

Answer

user2396269 picture user2396269 · Sep 28, 2014

Hmmmm , ok . You should use from MarginLayoutParams and set bottomMargin .

/*RelativeLayout.LayoutParams lpimgFooter = new RelativeLayout.LayoutParams(imgFooter.getLayoutParams());
        lpimgFooter.setMargins(MPLeftRightFooter, MPTopBottomFooter, MPLeftRightFooter, MPTopBottomFooter);
        imgFooter.setLayoutParams(lpimgFooter);*/ (Comment this code)
MarginLayoutParams lpimgFooter = (MarginLayoutParams) imgFooter.getLayoutParams();
lpimgFooter.bottomMargin = MPTopBottomFooter;
lpimgFooter.leftMargin = MPLeftRightFooter;
lpimgFooter.rightMargin = MPLeftRightFooter;
imgFooter.setLayoutParams(lpimgFooter);