Im trying to figure out how to align a view in relative layout to its top right corner. Currently it is aligned in top left corner.
A simple problem, yet I dont know how to do it.
Here is the code:
RelativeLayout.LayoutParams gpsViewLayoutParams = new RelativeLayout.LayoutParams(RelativeLayout.LayoutParams.WRAP_CONTENT, RelativeLayout.LayoutParams.WRAP_CONTENT );
gpsViewLayoutParams.addRule(RelativeLayout.ALIGN_PARENT_TOP);
gpsViewLayoutParams.addRule(RelativeLayout.ALIGN_RIGHT);
this.relativeLayout.addView(gpsView,gpsViewLayoutParams);
Use this:
gpsViewLayoutParams.addRule(RelativeLayout.ALIGN_PARENT_RIGHT);
instead of
gpsViewLayoutParams.addRule(RelativeLayout.ALIGN_RIGHT);
You may get in this way.