Android Label 自动排列库:AutoLabelUI

jopen 9年前

Android这个库能够将labels并排放置,如果一行没有足够空间的时候会另起一个新行。
AutoLabelUI mAutoLabel = (AutoLabelUI) view.findViewById(R.id.label_view);    AutoLabelUISettings autoLabelUISettings = new AutoLabelUISettings.Builder()                                                                   .withMaxLabels(5)                                                                   .withIconCross(R.drawable.cross)                                                                   .withBackgroundColor(android.R.color.holo_blue_bright)                                                                   .withLabelsClickables(false)                                                                   .withShowCross(true)                                                                   .withTextColor(android.R.color.holo_red_dark)                                                                   .withTextSize(R.dimen.label_title_size)                                                                   .build();    mAutoLabel.setSettings(autoLabelUISettings);

</div>

项目主页:http://www.open-open.com/lib/view/home/1441701194711