android-tagview
android-tagview copied to clipboard
An Android TagView Widget. You can edit the tag's style, and set listener of selecting or deleting tag.
How do I arrange all the tags horizontally and scroll them horizontally from left to right.
你好,最近在做标签的功能,使用了你的控件,效果不错,也方便的。在ListView中使用的过程中遇到的问题哈,想请教一下你。 问题描述如下: 在ListView中,我使用了Tagview,在就多Tag的时候,出现了一开始只显示一部分的情况Tag,后面超出的部分Tag处于隐藏状态,通过ListView滑动后才会换行全部显示出来,请问一下这个问题的我哪里设置有问题吗?还是布局的问题?
我在使用时,发现,listview加载完之后,tagview不会自动换行,看了一下源码,只需要在tagview下添加以下代码: ``` public void setMaxWith(int width) { mWidth = width; } ``` 并在使用tagview之前,调用此方法,设置一个tagview所占用的最大宽度,例如我的代码中,动态计算出宽度并设置即可: ``` int phoneWid = HomepageUtil.getPhoneWid(); mHolder.tag_describe.setMaxWith(phoneWid - HomepageUtil.dp2px(15 + 100 + 12 + 15)); ```
When I am adding a TAG in the Urdu language. Some of the tags are not visible in TagView
修复只有一个tag并且tag的文字长度超出屏幕宽度的情况下,tag不显示的问题
In Few phones the tags get broken in the middle and shows only "..." at the end. Any idea as how to disable it and show the tag fully in...
Is there a way to disable the layout color press event on a tag? The purpose is to not change any thing on the tag layout, when the user clicks...
This library offers all other necessary features but i badly in need of this to change color of a selected tag ,so that user can get visual feedback which tag...