Hi i am very begginer
for android and i have added Relative layout programatically on my blank Activity and so for everything is ok
Here my main requirement is i would like to set margins for that Relative-layout at four sides for this i have tried some code but that's not working please help me
my code:-
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
// Creating a new RelativeLayout
RelativeLayout ll = new RelativeLayout(this);
ll.setBackgroundColor(getResources().getColor(R.color.red));
RelativeLayout.LayoutParams layoutParams = new RelativeLayout.LayoutParams(
RelativeLayout.LayoutParams.MATCH_PARENT, RelativeLayout.LayoutParams.MATCH_PARENT);
layoutParams.setMargins(10, 10, 10, 10);
setContentView(ll);
}