android Programming Glossary: concerns
Is it possible to extend Facebook tokens with extendAccessTokenIfNeeded in an Android app? http://stackoverflow.com/questions/10073426/is-it-possible-to-extend-facebook-tokens-with-extendaccesstokenifneeded-in-an-an Facebook app installed on their device. Other ideas and concerns By changing the extendAccessTokenIfNeeded function in Facebook.java..
Android AsyncTask http://stackoverflow.com/questions/12008535/android-asynctask into their own files. This way we have a separation of concerns which makes it more easier to understand the code. We can do..
What NFC tags does the Nexus 7 Support? (2012) http://stackoverflow.com/questions/12119933/what-nfc-tags-does-the-nexus-7-support-2012 on a friends device and it wasn't working. I raise these concerns because I know the Mifare Classic tags don't work with Blackberry..
Android SQLite performance in complex queries http://stackoverflow.com/questions/13401642/android-sqlite-performance-in-complex-queries basic explanation in Query Planning . And to address your concerns about data processing in Java vs. SQLite I think that fully..
Android Speech Recognition as a service on Android 4.1 & 4.2 http://stackoverflow.com/questions/14940657/android-speech-recognition-as-a-service-on-android-4-1-4-2 a service on all Android versions up to 4.1. My question concerns getting it working on versions 4.1 and 4.2 as it is known there..
IntelliJ Idea 12 + Android + Scala nowadays http://stackoverflow.com/questions/16750642/intellij-idea-12-android-scala-nowadays the upcoming new version of SBT Android 0.7 . Most of your concerns should be addressed there. If they are not then that's a problem...
How to programmatically get the devices IMEI/ESN in Android http://stackoverflow.com/questions/1972381/how-to-programmatically-get-the-devices-imei-esn-in-android not a secure way to authenticate users and raises privacy concerns. It is not recommended. Instead look at the Google Login API..
Custom fonts and XML layouts (Android) http://stackoverflow.com/questions/2376250/custom-fonts-and-xml-layouts-android the assets folder. UPDATE 8 1 13 There are serious memory concerns with this method. See chedabob's comment below. share improve..
How to use WeakReference in Java and Android development? http://stackoverflow.com/questions/3243215/how-to-use-weakreference-in-java-and-android-development and PhantomReference as well. EDIT Tom has raised some concerns over implementing a cache with WeakHashMap . Here is an article..
Android: CursorAdapter, ListView and CheckBox http://stackoverflow.com/questions/4803756/android-cursoradapter-listview-and-checkbox checkbox share improve this question There are a few concerns with the ListView when having checkable items in it. I would..
Using LGPL library in Paid Android App http://stackoverflow.com/questions/4916512/using-lgpl-library-in-paid-android-app I would recommend contacting the author s explaining your concerns and asking if they are happy to allow you to use it. share..
Peer-to-Peer communication options [duplicate] http://stackoverflow.com/questions/5041426/peer-to-peer-communication-options data transfer options were not implemented due to security concerns. Has this changed at all and how would you do peer to peer transfer..
Connecting android with MS SQL SERVER 2008 http://stackoverflow.com/questions/5255984/connecting-android-with-ms-sql-server-2008
Lock android app after a certain amount of idle time http://stackoverflow.com/questions/576600/lock-android-app-after-a-certain-amount-of-idle-time by a total removal of any background process wakelock concerns no services alarms or receivers necessary . To work around process..
Why does heap memory increase when re-launching an activity? http://stackoverflow.com/questions/6835398/why-does-heap-memory-increase-when-re-launching-an-activity increase when re launching an activity This question concerns memory in Android. My method I have two activites A and B. From..
HTTPS connection with basic auth result into Unauthorized http://stackoverflow.com/questions/7105681/https-connection-with-basic-auth-result-into-unauthorized you have to edit the host www.google.com for your concerns. Notice Only the full qualified domain name FQDN is needed not..
Is it possible to extend Facebook tokens with extendAccessTokenIfNeeded in an Android app? http://stackoverflow.com/questions/10073426/is-it-possible-to-extend-facebook-tokens-with-extendaccesstokenifneeded-in-an-an advantage is that the user would not need to have the official Facebook app installed on their device. Other ideas and concerns By changing the extendAccessTokenIfNeeded function in Facebook.java to always return true I think I got it to refresh once...
Android AsyncTask http://stackoverflow.com/questions/12008535/android-asynctask the UI from the method onPostExecute . I like to move my task into their own files. This way we have a separation of concerns which makes it more easier to understand the code. We can do this by using a interface to define a callback method public..
What NFC tags does the Nexus 7 Support? (2012) http://stackoverflow.com/questions/12119933/what-nfc-tags-does-the-nexus-7-support-2012 Nexus 7 Support 2012 I tried the Ultralight C the other day on a friends device and it wasn't working. I raise these concerns because I know the Mifare Classic tags don't work with Blackberry and I was trying to find a tag that works on majority..
Android SQLite performance in complex queries http://stackoverflow.com/questions/13401642/android-sqlite-performance-in-complex-queries SQL statement so choose your indexes wisely. See also the basic explanation in Query Planning . And to address your concerns about data processing in Java vs. SQLite I think that fully optimized with proper indexes etc. SQLite query against relational..
Android Speech Recognition as a service on Android 4.1 & 4.2 http://stackoverflow.com/questions/14940657/android-speech-recognition-as-a-service-on-android-4-1-4-2 recognition working using the SpeechRecognizer class as a service on all Android versions up to 4.1. My question concerns getting it working on versions 4.1 and 4.2 as it is known there is a problem in that the API doesn't do as documented in..
IntelliJ Idea 12 + Android + Scala nowadays http://stackoverflow.com/questions/16750642/intellij-idea-12-android-scala-nowadays question Update You can read the tutorial I wrote about the upcoming new version of SBT Android 0.7 . Most of your concerns should be addressed there. If they are not then that's a problem. Update 2 For fairness's sake there's also a great work..
How to programmatically get the devices IMEI/ESN in Android http://stackoverflow.com/questions/1972381/how-to-programmatically-get-the-devices-imei-esn-in-android device. Update As mentioned in the comments below this is not a secure way to authenticate users and raises privacy concerns. It is not recommended. Instead look at the Google Login API if you want to implement a frictionless login system. The Android..
Custom fonts and XML layouts (Android) http://stackoverflow.com/questions/2376250/custom-fonts-and-xml-layouts-android
How to use WeakReference in Java and Android development? http://stackoverflow.com/questions/3243215/how-to-use-weakreference-in-java-and-android-development with WeakHashMap . Be sure to check out SoftReference and PhantomReference as well. EDIT Tom has raised some concerns over implementing a cache with WeakHashMap . Here is an article laying out the problems WeakHashMap is not a cache Tom is..
Android: CursorAdapter, ListView and CheckBox http://stackoverflow.com/questions/4803756/android-cursoradapter-listview-and-checkbox the alarms. A lot of unnesseccary actions. android listview checkbox share improve this question There are a few concerns with the ListView when having checkable items in it. I would suggest the following link http tokudu.com 2010 android checkable..
Using LGPL library in Paid Android App http://stackoverflow.com/questions/4916512/using-lgpl-library-in-paid-android-app
Peer-to-Peer communication options [duplicate] http://stackoverflow.com/questions/5041426/peer-to-peer-communication-options Android Application Development where he says that the data transfer options were not implemented due to security concerns. Has this changed at all and how would you do peer to peer transfer of data android json communication p2p share improve..
Connecting android with MS SQL SERVER 2008 http://stackoverflow.com/questions/5255984/connecting-android-with-ms-sql-server-2008
Lock android app after a certain amount of idle time http://stackoverflow.com/questions/576600/lock-android-app-after-a-certain-amount-of-idle-time think it's a worthwhile tradeoff for reduced code and complexity by a total removal of any background process wakelock concerns no services alarms or receivers necessary . To work around process killing locking the app regardless of time instead of..
Why does heap memory increase when re-launching an activity? http://stackoverflow.com/questions/6835398/why-does-heap-memory-increase-when-re-launching-an-activity does heap memory increase when re launching an activity This question concerns memory in Android. My method I have two activites A and B. From A I launch B like this Intent i new Intent A.this B.class..
HTTPS connection with basic auth result into Unauthorized http://stackoverflow.com/questions/7105681/https-connection-with-basic-auth-result-into-unauthorized 80 http into new HttpHost www.google.com 443 https . Furthermore you have to edit the host www.google.com for your concerns. Notice Only the full qualified domain name FQDN is needed not the full URI. HttpClient 3.x package com.test import org.apache.http.HttpEntity..
|