android-flowlayout
android-flowlayout copied to clipboard
Linear layout, that wrap its content to the next line if there is no space in the current line.
I have a simple feature request. I am using this FlowLayout to display a screen of quick reference material, but a lot of the text blends together. I'm trying to...
Hello, We are currently using your library in one of our application. Actually we need a favour from your side. According to the Google Play Policy, all apps have to...
http://developer.android.com/intl/zh-tw/reference/android/widget/RadioGroup.html Android's RadioGroup extends LinearLayout. It will let some items disappear when there are too many radio buttons. Can you add this as a new feature?
Initially my FlowLayout is hidden, then I want to expand it using animation. The layout contains two lines of tags (buttons). The problem is I can't get actual height of...
Hi, as the title says, i can't get FlowLayout to work with an enclosing Scrollview. XML is like follows: ` ` [Result without ScrollView](https://ibb.co/dtqKrF) [Result with ScrollView](https://ibb.co/m6uerF)
When I try to open the project on my android IDE I'm getting the following error: ``` Error:Unsupported method: BaseConfig.getApplicationIdSuffix(). The version of Gradle you connect to does not support...
When add children dynamically with drawable , it doesn't work well  ``` java String[] gs = new String[]{"买车", "卖车", "订车", "车辆上牌", "车辆过户", "过户", "售后投诉处理"}; for (int i = 0;...
in FlowLayoutManager `this.config.setMaxWidth(this.getWidth() - this.getPaddingRight() - this.getPaddingLeft()); this.config.setMaxHeight(this.getHeight() - this.getPaddingTop() - this.getPaddingBottom()); this.config.setWidthMode(View.MeasureSpec.EXACTLY); this.config.setHeightMode(View.MeasureSpec.EXACTLY); this.config.setCheckCanFit(true);` setMaxHeight always get 0. And when i set a exactly height in xml, the content...