I'm trying to programmatically add/remove the android:layout_below="@+id/relativeLayout_progress_circles"
attribute from the ConstraintLayout
element. how do I do this?
<android.support.constraint.ConstraintLayout
android:id="@+id/my_constraint_layout"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/view1"
android:layout_above="@+id/view2"
android:layout_centerHorizontal="true"
android:scaleType="centerInside">
...
/>