Используйте LayoutInflater, как показано ниже
Определите относительный макет в вашем xml
<RelativeLayout android:id="@+id/mylayout" android:layout_width="fill_parent"
android:layout_height="fill_parent" />
Отобразите его в своем коде Java
RelativeLayout mynewlayout = (RelativeLayout) findById(R.id.mylayout);
Используйте Layout Inflater
LayoutInflater layoutInflater = (LayoutInflater)
this.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
mynewlayout.addView(0, layoutInflater.inflate(R.layout.one_promo, this, false) );