android Programming Glossary: legitimate
Are there any standards for mobile device web browsers in terms of thread sleeping? http://stackoverflow.com/questions/10739835/are-there-any-standards-for-mobile-device-web-browsers-in-terms-of-thread-sleepi minimum timeout of 4ms read explanation on MDN . So it is legitimate for every device software firmware to stop such execution if..
Android ViewPager - can't update dynamically http://stackoverflow.com/questions/10849552/android-viewpager-cant-update-dynamically every single item in your adapter. This is a completely legitimate fix This fix makes notifyDataSetChanged behave like a regular..
Can we delete an SMS in Android before it reaches the inbox? http://stackoverflow.com/questions/1741628/can-we-delete-an-sms-in-android-before-it-reaches-the-inbox Despite some negative reactions to this question there are legitimate uses for SMS interception. For example automating phone number..
Change the background color of the options menu http://stackoverflow.com/questions/2944244/change-the-background-color-of-the-options-menu to the default behavior if it has to fail. There are many legitimate reasons why one may need to control the look of Options menus..
How to get any identifier of the topmost activity? http://stackoverflow.com/questions/3393908/how-to-get-any-identifier-of-the-topmost-activity This may sound like malware behavior but it is not It is legitimate use case Edit Activities are not in my application. They can..
android service startService() and bindService() http://stackoverflow.com/questions/3514287/android-service-startservice-and-bindservice was a little confusing. What you describe is perfectly legitimate and in fact the only way to get the behavior you want. If you..
Is it really impossible to protect Android apps from reverse engineering? http://stackoverflow.com/questions/4336637/is-it-really-impossible-to-protect-android-apps-from-reverse-engineering the face of network outages and just generally frustrate legitimate users. The Android developers blog has some useful articles.. enough attacker can circumvent these while it can cause legitimate user frustration as illustrated by the Windows KB article Games..
How to keep the OAuth consumer secret safe, and how to react when it's compromised? http://stackoverflow.com/questions/4419915/how-to-keep-the-oauth-consumer-secret-safe-and-how-to-react-when-its-compromis on its behalf would be only what your business logic legitimately needs. But now you get in the realm of a whole slew of other.. the client app or it attempts to determine if the app is legitimate and give it the secret. In both approaches you still have to..
Get view width/height or font width/height/other sizes before first display http://stackoverflow.com/questions/5375631/get-view-width-height-or-font-width-height-other-sizes-before-first-display should place all views properly. However there are some legitimate cases when some sort of calculations should be done in order..
Android: How to declare global variables? http://stackoverflow.com/questions/708012/android-how-to-declare-global-variables that using Singletons cannot work fine or are not a legitimate alternative. I am arguing that Singletons do not provide as..
How to protect media content (video, audio) on Android from being saved/redistributed? http://stackoverflow.com/questions/7625205/how-to-protect-media-content-video-audio-on-android-from-being-saved-redistri introducing more bugs and worse performance making the legitimate user's experience worse. If decide not to roll your own obfuscation..
Dealing with different aspect ratios in libgdx http://stackoverflow.com/questions/9198932/dealing-with-different-aspect-ratios-in-libgdx Below is the code to show how I am dealing with this legitimate problem. FORUM LINK http www.java gaming.org index.php topic..
Android java : Update same EditText in textChanged event http://stackoverflow.com/questions/9498155/android-java-update-same-edittext-in-textchanged-event that somewhere within s the text has been changed. It is legitimate to make further changes to s from this callback but be careful..
Are there any standards for mobile device web browsers in terms of thread sleeping? http://stackoverflow.com/questions/10739835/are-there-any-standards-for-mobile-device-web-browsers-in-terms-of-thread-sleepi such behaviour also on desktop browsers which implement a minimum timeout of 4ms read explanation on MDN . So it is legitimate for every device software firmware to stop such execution if they only think it would be necessary. You might also want..
Android ViewPager - can't update dynamically http://stackoverflow.com/questions/10849552/android-viewpager-cant-update-dynamically remove it. So it has the effect of removing and recreating every single item in your adapter. This is a completely legitimate fix This fix makes notifyDataSetChanged behave like a regular Adapter without view recycling. If you implement this fix..
Can we delete an SMS in Android before it reaches the inbox? http://stackoverflow.com/questions/1741628/can-we-delete-an-sms-in-android-before-it-reaches-the-inbox the inbox android sms share improve this question Yes. Despite some negative reactions to this question there are legitimate uses for SMS interception. For example automating phone number verification services which are provisioned via SMS though..
Change the background color of the options menu http://stackoverflow.com/questions/2944244/change-the-background-color-of-the-options-menu versions. We want a solution that fails gracefully back to the default behavior if it has to fail. There are many legitimate reasons why one may need to control the look of Options menus typically to match a visual style for the rest of the app..
How to get any identifier of the topmost activity? http://stackoverflow.com/questions/3393908/how-to-get-any-identifier-of-the-topmost-activity Receive notification when topmost Activity changes P.S. This may sound like malware behavior but it is not It is legitimate use case Edit Activities are not in my application. They can be just about anything browser maps app settings etc. android..
android service startService() and bindService() http://stackoverflow.com/questions/3514287/android-service-startservice-and-bindservice android share improve this question I think hara's answer was a little confusing. What you describe is perfectly legitimate and in fact the only way to get the behavior you want. If you create a service by binding to it it will die when you unbind...
Is it really impossible to protect Android apps from reverse engineering? http://stackoverflow.com/questions/4336637/is-it-really-impossible-to-protect-android-apps-from-reverse-engineering amount to DRM and can make your client code fragile in the face of network outages and just generally frustrate legitimate users. The Android developers blog has some useful articles on the matter of 'tamper resistant' Android apps and they recommend.. code to deter static analysis but to be honest a determined enough attacker can circumvent these while it can cause legitimate user frustration as illustrated by the Windows KB article Games Error Message A Debugger Has Been Detected Unload the Debugger..
How to keep the OAuth consumer secret safe, and how to react when it's compromised? http://stackoverflow.com/questions/4419915/how-to-keep-the-oauth-consumer-secret-safe-and-how-to-react-when-its-compromis actions the malicious app would be able to make the proxy perform on its behalf would be only what your business logic legitimately needs. But now you get in the realm of a whole slew of other problems having to deal with reliability and scalability... server whether it keeps the secret and proxies the calls for the client app or it attempts to determine if the app is legitimate and give it the secret. In both approaches you still have to solve the problem of is this request coming from a piece of..
Get view width/height or font width/height/other sizes before first display http://stackoverflow.com/questions/5375631/get-view-width-height-or-font-width-height-other-sizes-before-first-display for placement is frowned up. Android layout managers should place all views properly. However there are some legitimate cases when some sort of calculations should be done in order to provide hints ex. number of columns in a GridView or sizing..
Android: How to declare global variables? http://stackoverflow.com/questions/708012/android-how-to-declare-global-variables resources pools of objects etc. It works great. I am not arguing that using Singletons cannot work fine or are not a legitimate alternative. I am arguing that Singletons do not provide as strong a contract with the Android system as using an Application..
How to protect media content (video, audio) on Android from being saved/redistributed? http://stackoverflow.com/questions/7625205/how-to-protect-media-content-video-audio-on-android-from-being-saved-redistri decodes plays the stream. Though by implementing that you risk introducing more bugs and worse performance making the legitimate user's experience worse. If decide not to roll your own obfuscation and use some automatic obfuscater product already available..
Dealing with different aspect ratios in libgdx http://stackoverflow.com/questions/9198932/dealing-with-different-aspect-ratios-in-libgdx option to achieve this or whether there are better alternatives. Below is the code to show how I am dealing with this legitimate problem. FORUM LINK http www.java gaming.org index.php topic 25685.new public class SplashScreen implements Screen Aspect..
Android java : Update same EditText in textChanged event http://stackoverflow.com/questions/9498155/android-java-update-same-edittext-in-textchanged-event Editable s This method is called to notify you that somewhere within s the text has been changed. It is legitimate to make further changes to s from this callback but be careful not to get yourself into an infinite loop because any changes..
|