Tagged Questions
The getstring tag has no wiki summary.
13
votes
2answers
1k views
Why might Resources.getString() intermittently return strings from the wrong locale?
I have an Android application with English strings in values/strings.xml. For each string in that file, I have an entry in values-ja/strings.xml with the Japanese translation of that string. If I set ...
1
vote
2answers
847 views
R.string; get string from dynamic key name [closed]
Possible Duplicate:
Dynamic Resource Loading Android
In Android, I can load a string from the resources with String s = getString(R.string.keyName). But I have a list of categories in my ...
1
vote
3answers
742 views
Android - ClassCastException?
@Override
public void onPause()
{
super.onPause();
save(notes.itemSelected);
}
@Override
public void onResume()
{
super.onResume();
notes.itemSelected.clear();
notes.itemSelected = ...
1
vote
3answers
3k views
Android: getString(R.string in static method
When programming for Android sometimes you have to use static methods. But when you try to acces you resources in a static method with getString(R.string.text) you'll get an error. Making it static ...
1
vote
2answers
2k views
Using intent.getStringExtra from within an activity
I am relatively new to android. I have two applications A and B. I have an activity in A, lets name it x, that would launch the application B. Now the intent sent by x contains StringExtra that I want ...
0
votes
2answers
38 views
Actually displaying my SQL Database value on my application, not the location
Basically, I want to return the actual value in the database and not the position that is currently being pointed to. From reading up on this, the getString method seems to be the guy that I need, but ...
0
votes
0answers
39 views
how to get values from one PreferenceActivity to another?
I try method with getString | putString but it is not compatible with PreferenceActivity. I had some String value from one activity and I need to use it in another.
Where I need to take:
Bundle ...
0
votes
1answer
55 views
What's better in a loop - context.getString() or a variable?
I use some strings which are defined in a resource file. What is better in terms of resource usage and performance?
Call context.getString(stringId) every single loop or store the ...
0
votes
1answer
68 views
ListPreference coding value not executing inside if statement
Can you check my code for anything missing?
I'm trying to get use the value from a listpreference in an if statement but the if statement never responds to the value stored in the listpreference.
...
0
votes
1answer
73 views
Getting String from Json?
I have a strange problem in my android app. In one method I do this :
try {
String r = responseBody.toString();
JSONArray jArray = new JSONArray(r);
categorys = new String[jArray.length()];
...
0
votes
0answers
412 views
Android Cursor.getString return null
I have question.
Field A value = "abcdefg"
cursor.getString(cursor.getColumnIndex("A"));
Output:
abcdefg
But:
Field A value = "abcdefg가나다라"
cursor.getString(cursor.getColumnIndex("A"));
...
0
votes
1answer
597 views
get and set listPreference from another activity not working
I'm trying to get and set a listPreference value from different activities and it's not working.
When I read and write it from my main activity, it only keeps whatever I write, so I'm assuming that ...
0
votes
0answers
302 views
ResourceManager.GetString() always returns default resources
We have a solution set up as follows:
Solution
-BusinessLogic
--BusinessLogic.resx
-MainApp
--App_GlobalResources
---OurStrings.resx
Our default language is English. We have added ...
0
votes
1answer
272 views
Beginner Question - Gets.chomp, stops my timer running, causing a crash
Hello I've been learning from the Chris Pine's, learn to program book on ruby and since finishing I have been trying to write a text adventure game, taking some ideas from the bitwise article ...
0
votes
2answers
325 views
Java: reading an int from Excel as string return as decimal?
I'm trying to read an integer from an Excel file like this:
Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
String myExcel = "jdbc:odbc:Driver={Microsoft Excel Driver (*.xls)};DBQ="";" +
...
0
votes
4answers
187 views
Help writing getstring function
Im having some trouble writing a getstring function, this is what I have so far.
Regards,
V
const char* getstring()
{
char *buffer;
int i = 255;
buffer = (char ...
0
votes
2answers
226 views
VS2005 UTF-8 generic HTTP handler: problem with certain chars in query string (e.g. þ æ)
I am developing a generic HTTP handler in VS2005 and testing it in Debug Mode. It works well except when the query string contains higher-bit characters, e.g. Latin Small Letter Thorn /u00FE þ and ...
0
votes
2answers
2k views
Getting null terminated string from System.Text.Encoding.Unicode.GetString
I have an array of bytes that I receive from an external entity. It is a fixed size. The bytes contain a unicode string, with 0 values to pad out the rest of the buffer:
So the bytes might be:
H ...
0
votes
3answers
3k views
Access VBA: How to select particular columns in ado using getstring?
When we use getstring to get data from a recordset(ADO) then it returns all the columns, if only particular columns are required then how do we modify the getstring statement?#
Thanks
tksy