Reputation: 219
<ImageView
android:id="@+id/wipeID"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_above="@+id/popup_window"
android:layout_alignBottom="@+id/linerID"
android:src="@drawable/wiper_btn"/>
In the above one android:layout_alignBottom="@+id/linerID" is remove programmatically how to remove that one?
Upvotes: 0
Views: 226
Reputation: 712
If I don't get you wrong you want to change your layout parameters...
So this is roughly how you can achive it:
hope this leads you to the right track...
Upvotes: 1