android Programming Glossary: workarounds
What is the difference between the states selected, checked and activated in Android? http://stackoverflow.com/questions/11504860/what-is-the-difference-between-the-states-selected-checked-and-activated-in-and setItemActivated . Prior to Honeycomb we had to implement workarounds to reflect state_checked in our list items. This is because.. ... and it does NOT propagate without help. These workarounds were of the following form Extend the root layout to implement..
override Home key in android ICS http://stackoverflow.com/questions/13139970/override-home-key-in-android-ics but it's not working on android 4.X. Do you know other workarounds to achieve this task I've looked a little bit in native Phone..
Moving MapFragment (SurfaceView) causes black background flickering http://stackoverflow.com/questions/14419521/moving-mapfragment-surfaceview-causes-black-background-flickering TextureView. but on lower versions we still have to use workarounds. android surfaceview android maps android maps v2 mapfragment..
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 more important for me. If anyone has any other alternative workarounds then I'd like to hear those too. android speech recognition..
Playing HTML5 video on fullscreen in android webview http://stackoverflow.com/questions/15768837/playing-html5-video-on-fullscreen-in-android-webview for closing the full screen. I tried few unsuccessful workarounds Reflection I tried to reach the HTML5VideoFullScreen instance..
gridView with different cells sizes, pinterest style http://stackoverflow.com/questions/18557720/gridview-with-different-cells-sizes-pinterest-style know of another alternative to this problem Maybe some workarounds for any of the solutions I've shown EDIT I think that about..
ListView with clickable/editable widget http://stackoverflow.com/questions/2098558/listview-with-clickable-editable-widget have focusable clickable items in a row there are some workarounds like this one . Also you can take a look at the Call Logs screen...
Vertical line using XML drawable http://stackoverflow.com/questions/2658772/vertical-line-using-xml-drawable question is how to make this line vertical Yes there are workarounds such as drawing a rectangle shape 1px thick but that complicates..
Mapview getLatitudeSpan and getLongitudeSpan not working http://stackoverflow.com/questions/2667386/mapview-getlatitudespan-and-getlongitudespan-not-working but it is a problem has anybody got this problem Any workarounds I tried using getProjection too but I get the same problem...
Set TextView text from html-formatted string resource in XML http://stackoverflow.com/questions/3235131/set-textview-text-from-html-formatted-string-resource-in-xml something obvious Is it not possible at all Any help or workarounds welcome Edit Just tried some things and it seems that HTML formatting..
android design considerations: AsyncTask vs Service (IntentService?) http://stackoverflow.com/questions/3817272/android-design-considerations-asynctask-vs-service-intentservice the whole app process exists. However those are incorrect workarounds. Processes in Android are also may be killed when OS decides..
How to create a Looper thread, then send it a message immediately? http://stackoverflow.com/questions/4838207/how-to-create-a-looper-thread-then-send-it-a-message-immediately like an uncommon scenario. I can come up with several workarounds all of them ugly Something like this class Worker extends Thread..
How to display console.log() output in PhoneGap app using Eclipse and HTC Desire HD? http://stackoverflow.com/questions/5847290/how-to-display-console-log-output-in-phonegap-app-using-eclipse-and-htc-desire directly to LogCat from the HTC Evo without any workarounds. The same program doesn't work with PhoneGap 1.1.0 share improve..
Playing an audio file while on the call in android / send a voice prompt so that other person can hear it? http://stackoverflow.com/questions/6498999/playing-an-audio-file-while-on-the-call-in-android-send-a-voice-prompt-so-that quiet a bit old. I was wondering if there were any updates workarounds for this issue. If any help will be greatly appreciated. Thanks..
Optional permissions so an app can show on all devices and enable optional features on some? http://stackoverflow.com/questions/9299993/optional-permissions-so-an-app-can-show-on-all-devices-and-enable-optional-featu question. I'm hoping for newer information and for other workarounds people have found if any... what is the solution to this issue..
Webview in Scrollview http://stackoverflow.com/questions/9718245/webview-in-scrollview a content smaller than the previous one . I've found workarounds for all of them in GoodNews but cannot remember them now because..
ListView selection remains persistent after exiting choice mode http://stackoverflow.com/questions/9754170/listview-selection-remains-persistent-after-exiting-choice-mode longer supporting 'selections'. I have improved the above workarounds a bit by clearing the selection state manually and then setting..
Android accelerometer not working when screen is turned off http://stackoverflow.com/questions/9982433/android-accelerometer-not-working-when-screen-is-turned-off searched for some alternatives some of them include workarounds that do not work for my device LG P990 stock ROM . So what happens.. seems the accelerometer is put into sleep mode. One of the workarounds presented in some of the links is to unregister and re register..
What is the difference between the states selected, checked and activated in Android? http://stackoverflow.com/questions/11504860/what-is-the-difference-between-the-states-selected-checked-and-activated-in-and invokes the above. In other words it could equally be called setItemActivated . Prior to Honeycomb we had to implement workarounds to reflect state_checked in our list items. This is because ListView calls setChecked ONLY on the topmost View in the layout.. topmost View in the layout and layouts do not implement checkable ... and it does NOT propagate without help. These workarounds were of the following form Extend the root layout to implement Checkable. In its constructor recursively find all the children..
override Home key in android ICS http://stackoverflow.com/questions/13139970/override-home-key-in-android-ics HOME key in my application. I've used code from this post but it's not working on android 4.X. Do you know other workarounds to achieve this task I've looked a little bit in native Phone application on android 2.2 but I couldn't find where is the..
Moving MapFragment (SurfaceView) causes black background flickering http://stackoverflow.com/questions/14419521/moving-mapfragment-surfaceview-causes-black-background-flickering this issue has been resolved on devices 4.1 . They just used TextureView. but on lower versions we still have to use workarounds. android surfaceview android maps android maps v2 mapfragment share improve this question Of course the proper solution..
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 will cause but getting continuous voice recognition is more important for me. If anyone has any other alternative workarounds then I'd like to hear those too. android speech recognition android 4.2 share improve this question This is a work around..
Playing HTML5 video on fullscreen in android webview http://stackoverflow.com/questions/15768837/playing-html5-video-on-fullscreen-in-android-webview aren't shown this is pretty sad. I can't get the trigger for closing the full screen. I tried few unsuccessful workarounds Reflection I tried to reach the HTML5VideoFullScreen instance which holds a MediaPlayer member from the inner class VideoSurfaceView...
gridView with different cells sizes, pinterest style http://stackoverflow.com/questions/18557720/gridview-with-different-cells-sizes-pinterest-style . other solutions as mentions here . The question Does anyone know of another alternative to this problem Maybe some workarounds for any of the solutions I've shown EDIT I think that about StaggeredGridView the scrolling and exceptions can be solved..
ListView with clickable/editable widget http://stackoverflow.com/questions/2098558/listview-with-clickable-editable-widget NOT to be invoked. However that does not mean you cannot have focusable clickable items in a row there are some workarounds like this one . Also you can take a look at the Call Logs screen. It has a ListView with clickable item the call icon on..
Vertical line using XML drawable http://stackoverflow.com/questions/2658772/vertical-line-using-xml-drawable 1dp android color #0000FF size android height 50dp shape The question is how to make this line vertical Yes there are workarounds such as drawing a rectangle shape 1px thick but that complicates the drawable XML if it consists of multiple item elements...
Mapview getLatitudeSpan and getLongitudeSpan not working http://stackoverflow.com/questions/2667386/mapview-getlatitudespan-and-getlongitudespan-not-working I get 0 and 360 1E6 respectively. This doesn't happen always but it is a problem has anybody got this problem Any workarounds I tried using getProjection too but I get the same problem. Here is the piece of code MapView mapView MapView findViewById..
Set TextView text from html-formatted string resource in XML http://stackoverflow.com/questions/3235131/set-textview-text-from-html-formatted-string-resource-in-xml creating an Activity just to set some text. Am I overlooking something obvious Is it not possible at all Any help or workarounds welcome Edit Just tried some things and it seems that HTML formatting in xml has some restraints tags must be written lowercase..
android design considerations: AsyncTask vs Service (IntentService?) http://stackoverflow.com/questions/3817272/android-design-considerations-asynctask-vs-service-intentservice This is because static stuff and Application exist while the whole app process exists. However those are incorrect workarounds. Processes in Android are also may be killed when OS decides it is time to. Android OS have its own considerations about..
How to create a Looper thread, then send it a message immediately? http://stackoverflow.com/questions/4838207/how-to-create-a-looper-thread-then-send-it-a-message-immediately will associate itself with the wrong thread. This hardly seems like an uncommon scenario. I can come up with several workarounds all of them ugly Something like this class Worker extends Thread public volatile Handler handler actually private of course..
How to display console.log() output in PhoneGap app using Eclipse and HTC Desire HD? http://stackoverflow.com/questions/5847290/how-to-display-console-log-output-in-phonegap-app-using-eclipse-and-htc-desire
Playing an audio file while on the call in android / send a voice prompt so that other person can hear it? http://stackoverflow.com/questions/6498999/playing-an-audio-file-while-on-the-call-in-android-send-a-voice-prompt-so-that audio file so that other person can hear it but they are quiet a bit old. I was wondering if there were any updates workarounds for this issue. If any help will be greatly appreciated. Thanks in advance. android share improve this question You..
Optional permissions so an app can show on all devices and enable optional features on some? http://stackoverflow.com/questions/9299993/optional-permissions-so-an-app-can-show-on-all-devices-and-enable-optional-featu possible to have optional permissions in Android is a similar question. I'm hoping for newer information and for other workarounds people have found if any... what is the solution to this issue Does anyone have other approaches besides the ones I've listed..
Webview in Scrollview http://stackoverflow.com/questions/9718245/webview-in-scrollview as described by you e.g. empty vertical space when loading a content smaller than the previous one . I've found workarounds for all of them in GoodNews but cannot remember them now because I've found a much better solution If you only put the WebView..
ListView selection remains persistent after exiting choice mode http://stackoverflow.com/questions/9754170/listview-selection-remains-persistent-after-exiting-choice-mode the framework optimizes out the clear operation as it is no longer supporting 'selections'. I have improved the above workarounds a bit by clearing the selection state manually and then setting the mode in a delayed manner so the framework will have..
Android accelerometer not working when screen is turned off http://stackoverflow.com/questions/9982433/android-accelerometer-not-working-when-screen-is-turned-off is off on Droid Nexus One even with a WakeLock . I have thoroughly searched for some alternatives some of them include workarounds that do not work for my device LG P990 stock ROM . So what happens is this When you register an event listener for android.. service is still running watching the LOGcat output but it seems the accelerometer is put into sleep mode. One of the workarounds presented in some of the links is to unregister and re register the event listener periodically using the thread of an IntentService..
|