Androidでプログラムでビューを配置する方法を知りたいです。たとえば、この XML コードがあるとします。
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/mainLayout">
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="121dp"
android:layout_marginTop="140dp"
android:text="Results" /></RelativeLayout>
Androidでプログラムでこのレイアウトを実現するにはどうすればよいですか? テキストビューのランダムな位置が欲しいからです。