Tagged Questions
The charsequence tag has no wiki summary.
66
votes
4answers
17k views
CharSequence VS String in Java?
Programming in Android, most of the text values are expected in CharSequence.
Why is that ? What is the benefit and what are the main impacts of using CharSequence over String ?
What are the main ...
12
votes
2answers
32k views
10
votes
2answers
6k views
ArrayList<String> to CharSequence[]
What would be the easiest way to make a CharSequence[] out of ArrayList<String>?
Sure I could iterate through every ArrayList item and copy to CharSequence array, but maybe there is ...
8
votes
2answers
103 views
Choosing between CharSequence and String for an API
A String is-a CharSequence. Many methods in the Java library accept CharSequence so they operate more generally. Some classe have a String method (for example, Writer.write(String)) and also implement ...
4
votes
2answers
80 views
Generic OR instead of AND <T extends Number | CharSequence>
Is it possible to generically parameterize a method accepting EITHER ClassA OR InterfaceB ?
Does Not Compile Due to | Pseudocode
public <T extends Number | CharSequence> void orDoer(T ...
3
votes
3answers
81 views
Why isn't method String.indexOf part of interface CharSequence?
I can't see any drawbacks in making String.indexOf part of the interface CharSequence. The benefit would be that other classes like StringBuffer or StringBuilder would need to implement the indexOf ...
2
votes
1answer
123 views
convert at symbol (“@”) to CharSequence
I am testing site with selenium and I need to send an e-mail to one of the fields. So far I am using this Java method:
String email = "test@example.com"
WebElement emailField = ...
2
votes
2answers
366 views
Problem with strings.xml… can't pass R.string.foo as a CharSequence
I'm running a TabActivity. In the following line:
spec = tabHost.newTabSpec("alltime").setIndicator(R.string.plots_allTime)
.setContent(intent);
I get an error because setIndicator() expects ...
1
vote
1answer
93 views
1
vote
5answers
383 views
Android, how to populate a CharSequence array dynamically (not initializing?)
How do I change something like this:
CharSequence cs[] = { "foo", "bar" };
to:
CharSequence cs[];
cs.add("foo"); // this is wrong...
cs.add("bar"); // this is wrong...
1
vote
5answers
100 views
Most efficient way to convert a single char to a CharSequence
What's the most efficient way to pass a single char to a method expecting a CharSequence?
This is what I've got:
textView.setText(new String(new char[] {c} ));
According to the answers given here, ...
1
vote
2answers
444 views
Converting ArrayList<T> to CharSequence[]
I want to convert my ArrayList containing elements with the toString method shadowed in "T":
public String toString(){
return name + " " + realname;
}
to a CharSequence array containing all ...
1
vote
3answers
351 views
Parse a date from a CharSequence with standard patterns…
I'm writing a parser for a command line interface of an external tool and I'm using Scala's parser combinators library. As part of this I need to parse a standard date of the format EEE MMM d HH:mm:ss ...
1
vote
2answers
4k views
R.string.value Help android notification
whats the deal with
CharSequence contentTitle = R.string.value;
Error cannot convert from int to CharSequence. Is there a way around this or am i missing something?
i tried
String s = ...
0
votes
1answer
69 views
Android: From StringArray Resources To CharSequence[]
I guess this is a pretty newbie question, but I've spent only 2 weeks on Android.
My question is, I have a StringArray created with a reference R.array.NAME
I want to populate a Dialog full of ...
0
votes
2answers
211 views
Android: Java: using a string resource in a Toast
My code is:
public static void ToastMemoryShort (Context context) {
CharSequence text = getString(R.string.toast_memoryshort); //error here
Toast.makeText(context, text, ...
0
votes
2answers
134 views
nullPointerException when replacing char sequence
I developed a very simple android app and then I obfuscated the code. A nullPointerException is throwed when, probably, I replace a char sequence.
Here is my stack trace:
...
0
votes
1answer
320 views
Add data to CharSequence dynamically
I have the following code to display a list of clickable items (user can choose more than one item)
return new AlertDialog.Builder(this)
.setTitle("Users")
...
0
votes
4answers
1k views
CharSequence to int
Is there a Way to converte a Charsequence or a String to an Ingeter?
CharSequence cs = "123";
int number = (int) cs;
I'm a Noob. Solution:
CharSequence cs = "123";
int number = ...
0
votes
3answers
261 views
string to charsequence
Can somebody please show me a bit of code to convert a string to charsequence?
0
votes
2answers
320 views
How to compare string values of CharSequence[]?
I have the following CharSequence defined:
final CharSequence[] videoQualities = {"any", "medium", "high", "hd"};
I am getting two string values: availableQuality and requestedQuality. Both can ...
0
votes
2answers
341 views
How to use CharSequence
Hey im having some trouble understanding CharSequence. I think this will be the perfect method to help with my hw but im having trouble understanding how to use it. How do i make the sequence < /p> ...
0
votes
1answer
414 views
Convert HashMap.keySet() to CharSequence[]?
I have a method in a client class that gathers data from a server, and returns a HashMap. I want to list the keys in an android dialog. The android API requires that the data must be in in the form of ...
0
votes
1answer
436 views
Android: How to read a number as int from a String; basically to read Text of a ListViewItem?
This is my problem.
I have a ListView, each row is a CheckedTextView.
The list view items are "1", "2" and "3".
When a ListItem is clicked, I want to read the number and assign it to an int ...