Android Label 自动排列库:AutoLabelUI
jopen
9年前
Android这个库能够将labels并排放置,如果一行没有足够空间的时候会另起一个新行。
</div> 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);