I want to figure out how to position views programmatically in android. Say, for example, we have this XML code.
<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>
How can I implement this layout programmatically in Android? because I want to have a random position in my text view.
source share