Tagged Questions
The list-separator tag has no wiki summary.
5
votes
2answers
217 views
Separator padding , ignoring it
I have a problem with this separator:
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle" >
<padding ...
4
votes
5answers
2k views
How to read 'List separator' from OS in Java?
I am writing a CSV exporter in Java that should respect the user's custom settings, especially the "List separator" to use as a delimiter.
In Windows, one can set this List separator in
Control ...
3
votes
4answers
275 views
Why can't I set $LIST_SEPARATOR in Perl?
I want to set the LIST_SEPARATOR in perl, but all I get is this warning:
Name "main::LIST_SEPARATOR" used only once: possible typo at ldapflip.pl line 7.
Here is my program:
#!/usr/bin/perl -w
...
0
votes
0answers
45 views
Unable to add separator in list view
This is my code
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.email_list_main);
emailResults = new ...
0
votes
1answer
101 views
Custom ListView: separator entries ignore settings
I've created a custom ListView with separators (using this tutorial). It looks and works fine but the separators are still clickable, focusable and able to get a context menu called from. So i've ...