Or in an XML layout:
android:id="@+id/predicate_layout" android:layout_width="fill_parent" android:layout_height="wrap_content"import android.util.AttributeSet; * ViewGroup that arranges child views in a similar way to text, with them laid * out one line at a time and "wrapping" to the next line as needed. * * Code licensed under CC-by-SA * * @author Henrik Gustafsson * @see http://stackoverflow.com/questions/549451/line-breaking-widget-layout-for-android * @license http://creativecommons.org/licenses/by-sa/2.5/ */ /** * @param horizontal_spacing Pixels between items, horizontally * @param vertical_spacing Pixels between items, vertically */ public PredicateLayout(Context context, AttributeSet attrs){ super(context, attrs); assert(MeasureSpec.getMode(heightMeasureSpec) != MeasureSpec.UNSPECIFIED); final int height = MeasureSpec.getSize(heightMeasureSpec) - getPaddingTop() - getPaddingBottom(); int xpos = getPaddingLeft(); int ypos = getPaddingTop(); final int childw = child.getMeasuredWidth(); if (xpos + childw > width) { xpos = getPaddingLeft(); ypos += line_height; xpos += childw + lp.horizontal_spacing; this.line_height = line_height; if (MeasureSpec.getMode(heightMeasureSpec) == MeasureSpec.UNSPECIFIED){ height = ypos + line_height; return new LayoutParams(1, 1); // default of 1px spacing
|
2 | updated code example; added xml snippet | ||
|
|
||||
|
Post Made Community Wiki by Henrik Gustafsson
|
||||
|
|
||||
|
1 |
|
||
|
I made my own layout that does what I want, but it is quite limited at the moment. I'll have to add the xml-support stuff later, but this should be enough as a proof of concept. Comments and improvement suggestions are of course welcome The activity:
And the Layout:
With the result:
|
||||

