You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi ApmeM,
First of all thanks for your FlowLayout it solved some of my layout issues I were experiencing. Unfortunately it seems like the android:minHeigth property is ignored; is there any way to work around this?
Do I understand correctly this is a FlowLayout attribute that means if parent wants to reduce FlowLayout size less then minHeight / minWidth then we need to set height / width to that value and part of the FlowLayout will be hidden by parent layout because of its actual size is less then FlowLayout size?
Hi ApmeM,
First of all thanks for your FlowLayout it solved some of my layout issues I were experiencing. Unfortunately it seems like the android:minHeigth property is ignored; is there any way to work around this?
This is how I currently use your FlowLayout:
<com.testapp.elements.FlowLayout xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:minHeight="@dimen/verticalMarginBigger"
android:gravity="center_vertical"
app:orientation="horizontal"
app:weightDefault="1.0">
</com.testapp.elements.FlowLayout>
The text was updated successfully, but these errors were encountered: