RelativeLayout relativelayout =
new
RelativeLayout(context);
RelativeLayout.LayoutParams layout_params =
new
RelativeLayout.LayoutParams(
ViewGroup.LayoutParams.MATCH_PARENT,
ViewGroup.LayoutParams.MATCH_PARENT
);
relativelayout.setLayoutParams(layout_params);
TextView tv =
new
TextView(context);
relativelayout.addView(tv);
RelativeLayout.LayoutParams tv_params =
new
RelativeLayout.LayoutParams
(
ViewGroup.LayoutParams.WRAP_CONTENT,
ViewGroup.LayoutParams.WRAP_CONTENT
);
tv_params.topMargin =
500
;
tv_params.rightMargin =
250
;
tv.setText(
"생성 텍스트"
);
tv.setLayoutParams(tv_params);