android-4.0-ice-cream-sandwich
Android spinner with date picker, like Google Calendar app
Twaddington’s comment on his answer is actually the right approach. What you need is to create a text view and apply the style style=”@android:style/Widget.DeviceDefault.Light.Spinner” Then you can create a click listener on the text view and use it to open a DatePickerDialog. That can be accomplished as shown here: https://stackoverflow.com/a/8127571/332738 (If you follow the example, … Read more
android 4.0 Dialog gets canceled when touched outside of dialog window
Check this method from the Android Developers site for dialog. Try using the dialog.setCanceledOnTouchOutside (boolean cancel) Pass a boolean value to enable/disable dialog behaviour when touched outside of the dialog window. Also go through these links: How do I fire an event when click occurs outside a dialog How to cancel an Dialog themed like … Read more
WebView on Android ICS, iframe problems with android_assets
Sirs, I had the same problem when using Phonegap (Apache Cordova) and IFrames in Android Ice Cream Sandwich (4.0.3). To solve this problem, I had to edit Apache Cordova Source Code. I changed the org.apache.cordova.CordovaWebViewClient.java file, and commented this part of the code, and included the last line (return false;). So it now looks like … Read more
No resource identifier found for attribute ‘parentActivityName’ in package ‘android’
android:parentActivityName appears first in Android 4.1 (API level 16). You need to have the latest 4.1 SDK to compile this.
ADB doesn’t recognize my Galaxy Nexus – Win7
Check if you have installed this package in your ADB “Google USB Driver package, revision 4”; if not do it. Another possible solution could be downloading the drivers from here: http://www.samsung.com/us/support/owners/product/SCH-I515MSAVZW This appears to work for the Samsung GT-i9250 version too.