问题标签 [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.

0 投票
4 回答
33151 浏览

android - 如何在某些部分上方生成带有标题的 ListView?

我想生成一个ListView在某些条目之间有一些分隔符的,就像它可以在某些属性部分中看到的那样。请参见下面的示例。我尝试生成一个List由一些文本视图组成的,然后是一个花哨的分隔符,解释列表的下一部分,然后是一些文本视图。如何才能做到这一点?我想过创建不同的视图以添加到列表中吗?这是要走的路吗?

0 投票
1 回答
2210 浏览

android - Android Listview ArrayAdapter 示例

我在ListView小部件中使用自定义行视图。

getView在我的实现中有方法。

我想要的是我想隐藏第二行的分隔图像我该怎么做?

0 投票
4 回答
2708 浏览

java - 在 JTable 中使用空列作为分隔符

我正在尝试使用空列作为JTable. 这是我到目前为止所拥有的图片和代码。我知道我可以使用自定义更改外观TableCellRenderer。在我走这条路之前,有没有更好的方法来做到这一点?任何想法表示赞赏。

表格面板.png

0 投票
1 回答
4268 浏览

android - 如何动态更改列表视图的分隔高度?

我有一个列表视图,其中不同行之间应该有不同的分隔线高度。那么,我们如何动态设置分隔线高度呢?

假设我有 10 行,前 2 行之间的分隔高度应该为 5,然后接下来的 5 行之间的分隔高度应该为 1,依此类推。

有人可以让我知道这样做的方法吗?

0 投票
4 回答
3447 浏览

android - 如何在android的listview中制作每个项目的分隔符?

我想动态改变分隔线的高度。从我搜索的任何内容来看,似乎可以通过将分隔符设置为ListView. 但我对此不是很清楚。

那么,有人可以更具体地说明如何将分隔符作为项目的一部分ListView吗?

0 投票
1 回答
1462 浏览

android - Android 膨胀视图为空

我正在尝试在垂直 LinearLayout 中的条目之间添加分隔线,以模拟 ListView 的外观。(在这种特殊情况下,我不能只使用 ListView。)

这就是我在 list_divider.xml 中的内容:

这是尝试在除列表中的第一个元素之外的每个元素之前膨胀此分隔符的代码:

主列表项显示正确,但分隔线不可见。

如果我将它们更改为 TextView 而不是普通视图,则会出现分隔线:

我尝试为宽度和高度设置显式像素值,以及使用border_width 定义和fill_parent 选项。没有什么不同的。

一个普通的旧视图有什么特别之处使它不会出现吗?

0 投票
5 回答
23764 浏览

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

0 投票
12 回答
173279 浏览

android - Android ListView 分隔符

我有这个代码:

哪里@drawable/list_divider是:

但我看不到任何分隔线。

0 投票
3 回答
28676 浏览

android - 在没有自定义 ListView 的 ListActivity 中使用 setDivider 更改分隔符?

我似乎无法使用我定义的 Drawable 获得自定义分隔线,以便在使用 aListActivity而不是创建 custom时工作ListView。似乎当虚拟机ListView为我创建自己的时ListActivity,它使用带有默认分隔符的主题;如果我尝试提供一个,则根本不会出现分隔符ListView

我知道我可以ListView使用 XML 创建自定义并在其上定义 android:divider ListView,这确实可以识别我的自定义分隔线 Drawable。但如果我能弄清楚如何让我自己的分隔线处理它,我宁愿让ListActivity创建它自己的。ListView

这是我现在使用的代码:

0 投票
3 回答
7886 浏览

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.

Lines on ListView