| bio | website | github.com/dmason82 |
|---|---|---|
| location | ||
| age | ||
| visits | member for | 6 months |
| seen | 19 hours ago | |
| stats | profile views | 2 |
|
1d |
awarded | Commentator |
|
1d |
comment |
how to pass game center data between activities? Well, one thing you could try doing is instead of extending the BaseGameActivity is looking at how they implement it and then put that GamesCient at the root level of your Application. It looks like that for the authentication piece the GamesClient would require an activity to be up, but I am sure you could find a way to initialize the games client for the global application from your initial activity pretty easily. |
|
Jan 12 |
comment |
Linking UITableView cells with reachability Out of curiosity, is your UITableView only those 4 cells? If so, you can just use the [NameOfYourUITableView setHidden:YES]; method if your reachability code shows that the device isn't connected. Alternatively, if not, you could always use reachability code in your tableview cellForRowAtIndexPath to check if the indexPath is one of your 4 IP cells, and if it isn't reachable you could return a blank UITableViewCell instead of a populated one. I guess it really depends on how you want to implement it. Hopefully that is helpful. |
|
Jan 2 |
awarded | Enthusiast |
|
Jan 1 |
answered | How to parse JSON file in android? JSON file is located in WAMP server.Not able to do |
|
Dec 29 |
answered | Xcode custom segue - Opposite of Cover Vertical (top to bottom) - COMPLETE NEWBIE |
|
Dec 27 |
comment |
get path of last directory used to save in objective-c Any reason you don't just use the NSUserDefaults class to save and/or retrieve the last folder that was used to save for the application? |
|
Dec 27 |
comment |
Populate data in EditText boxes Perhaps by posting some code for what you are trying to do within your Android application we can better help you. |
|
Dec 27 |
answered | Initializing custom UIViewController |
|
Dec 27 |
answered | creating a database and default data |
|
Dec 21 |
comment |
Trying to insert data to database from JSON array No worries. Glad to be of help. |
|
Dec 21 |
answered | Trying to insert data to database from JSON array |
|
Dec 21 |
comment |
Trying to insert data to database from JSON array Well, you can modify your application class to allow for you to put the context into your DBHelper class. The answer from [link]stackoverflow.com/questions/2002288/… will show you how to do that. |
|
Dec 21 |
comment |
Trying to insert data to database from JSON array One thing you could try doing if you can read your JSON data is changing your db.insert() call to db.insertOrThrow() and add a catch clause for SQLExceptions to see why it isn't getting into your SQLite database and/or assign a long to db.insert, as it should return the row number of the new database entry. Since if you can see the data from within your function, it would most likely be the database that isn't cooperating. |
|
Dec 21 |
comment |
Trying to insert data to database from JSON array Have you tried getting the JSON objects you are passing into addAllFacts(JSONObject) via logcat to verify your assumption? What is showing up? |
|
Dec 20 |
answered | Edit an AndroidManifest when compiling to remove API-key |
|
Dec 8 |
answered | how to include gridlayout to android platform 2.2 API level 8 |
|
Dec 6 |
answered | set backgroung image from resources |
|
Nov 30 |
answered | How to make Yelp API request? |
|
Nov 30 |
answered | Eclipse + Android GUI/UI Development Appropriate Strategy |