I change the size of RelativeLayout right in the code
RelativeLayout fragmentContainer = (RelativeLayout) mainActivity.findViewById(R.id.fragmentContainer); FrameLayout.LayoutParams layoutParams = new FrameLayout.LayoutParams(ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTENT); layoutParams.setMargins(0,56,0,0); fragmentContainer.setLayoutParams(layoutParams); As written in the documentation,
Sets the margins, in pixels.
How do I make the indent from above equal 56 ( android:actionBarSize ) in dp