问题标签 [divider]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
android - 如何在某些部分上方生成带有标题的 ListView?
我想生成一个ListView
在某些条目之间有一些分隔符的,就像它可以在某些属性部分中看到的那样。请参见下面的示例。我尝试生成一个List
由一些文本视图组成的,然后是一个花哨的分隔符,解释列表的下一部分,然后是一些文本视图。如何才能做到这一点?我想过创建不同的视图以添加到列表中吗?这是要走的路吗?
android - Android Listview ArrayAdapter 示例
我在ListView
小部件中使用自定义行视图。
我getView
在我的实现中有方法。
我想要的是我想隐藏第二行的分隔图像我该怎么做?
android - 如何动态更改列表视图的分隔高度?
我有一个列表视图,其中不同行之间应该有不同的分隔线高度。那么,我们如何动态设置分隔线高度呢?
假设我有 10 行,前 2 行之间的分隔高度应该为 5,然后接下来的 5 行之间的分隔高度应该为 1,依此类推。
有人可以让我知道这样做的方法吗?
android - 如何在android的listview中制作每个项目的分隔符?
我想动态改变分隔线的高度。从我搜索的任何内容来看,似乎可以通过将分隔符设置为ListView
. 但我对此不是很清楚。
那么,有人可以更具体地说明如何将分隔符作为项目的一部分ListView
吗?
android - Android 膨胀视图为空
我正在尝试在垂直 LinearLayout 中的条目之间添加分隔线,以模拟 ListView 的外观。(在这种特殊情况下,我不能只使用 ListView。)
这就是我在 list_divider.xml 中的内容:
这是尝试在除列表中的第一个元素之外的每个元素之前膨胀此分隔符的代码:
主列表项显示正确,但分隔线不可见。
如果我将它们更改为 TextView 而不是普通视图,则会出现分隔线:
我尝试为宽度和高度设置显式像素值,以及使用border_width 定义和fill_parent 选项。没有什么不同的。
一个普通的旧视图有什么特别之处使它不会出现吗?
android - dividers between TabWidgets
Is the android:divider attribute under the TabWidget working? I tried the Tab Layout tutorial from android just to test (http://developer.android.com/resources/tutorials/views/hello-tabwidget.html) and set the android:divider to some image (for now I used the android vertical scrollbar as the drawable to really emphasize if its getting picked up (copied it from frameworks), but when I ran it on the emulator, it doesn't appear to be working. According to the docs, the TabWidget does seem to support this attribute: "Drawable used to draw the divider between tabs."
Can anyone help? I am using a nine-patched drawable as my divider image drawable.
MB
android - Android ListView 分隔符
我有这个代码:
哪里@drawable/list_divider
是:
但我看不到任何分隔线。
android - 在没有自定义 ListView 的 ListActivity 中使用 setDivider 更改分隔符?
我似乎无法使用我定义的 Drawable 获得自定义分隔线,以便在使用 aListActivity
而不是创建 custom时工作ListView
。似乎当虚拟机ListView
为我创建自己的时ListActivity
,它使用带有默认分隔符的主题;如果我尝试提供一个,则根本不会出现分隔符ListView
。
我知道我可以ListView
使用 XML 创建自定义并在其上定义 android:divider ListView
,这确实可以识别我的自定义分隔线 Drawable。但如果我能弄清楚如何让我自己的分隔线处理它,我宁愿让ListActivity
创建它自己的。ListView
这是我现在使用的代码:
android - Black Line Under Some ListView Items
Interesting problem I'm having with a ListView. It's using a standard ArrayAdapter, with a custom XML layout for the items within. Simple XML:
I don't think there's anything in there that is a problem, but I'm having some strange black lines showing up that I can't seem to get rid of (you can see it in the picture below). I've tried setting android:dividerHeight="0px"
in the ListView, but these still appear. You can see between New Episodes and Shows that there is no line, but for some reason there is after the first and last.
Any ideas?
EDIT: Did some more thinking, seems to be just the first and the last, so I found:
android:headerDividersEnabled
and
android:footerDividersEnabled
Setting footers to false fixed the last one, but oddly setting header dividers to false had no effect. :/
EVEN MORE EDITS!: Okay, so I added a few more items to the list (should have done that first), and it seems to be every other item (e.g. item 1, item 3, item 5, and so on) that has a divider appearing below it.