[android-developers] Webview masking onclick events

2012-03-22 Thread riv
(true); mWebView.getSettings().setAllowFileAccess(true); mWebView.getSettings().setBuiltInZoomControls(false); mWebView.loadUrl(file:///android_asset/www/index.html); Is this a known issue ? Thanks in advance, riv -- You received this message

[android-developers] Callback when a task goes to background and come to foreground

2011-09-07 Thread RIV
I really need a callback thats called when a task goes to the background. I have a refresh task that I start in my main activity. I need to stop it when the app goes to the background, and start it again when the app comes to the foreground. There are many activities in my app and I should not

[android-developers] How can I protect videos in the ..res/raw/ folder of my Android app's APK?

2011-08-17 Thread Riv
How can I protect videos in the ..res/raw/ folder of my Android app's APK? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to

[android-developers] How can I protect videos in the ..res/raw/ folder of my Android app's APK?

2011-08-17 Thread Riv
How can I protect videos in the ..res/raw/ folder of my Android app's APK? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to

[android-developers] finish all running activities in the task above a particular activity.

2011-08-16 Thread Riv
How to finish all activities above the current activity in the task.? I have an application that has logout option. When i logout and login again, the last activity that was running before logging out is shown. I want to finish all activities above the Login activity after logging out. -- You

[android-developers] Re: finish all running activities in the task above a particular activity.

2011-08-16 Thread Riv
(), Login.class).addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP)); On Aug 16, 5:32 pm, Riv ronnievie...@gmail.com wrote: How to finish all activities above the current activity in the task.? I have an application that has logout option. When i logout and login again, the last activity that was running

[android-developers] Re: GridView not scaling to all screens

2011-08-13 Thread RIV
Try using android:stretchMode=spacingWidthUniform On Aug 13, 2:04 pm, Alaeddine Ghribi alaeddineghr...@gmail.com wrote: Hello, I have a GridView that launches activities when we tap on a button/ image of it. However, i'm facing an annoying display problem for it. I have an SGS and a Galaxy

[android-developers] Re: TextView overlaps Imageview

2011-08-13 Thread RIV
Thats becoz you have put the ImageView and Textviews in RelativeLayout. Put them in linearLayout or use android:alignparentbottom=true for ImageView. On Aug 13, 1:00 pm, Goutom goutom.sust@gmail.com wrote: Hi All In my xml layout TextView overlaps ImageView.I need to prevent it.

[android-developers] Stop/Clear an AnimationSet

2010-01-12 Thread RIV
Hi All, I have a situation where I'm using an AnimationSet object. I need to stop the previously running animationset before starting the new one. How to stop the animations in AnimationSet? Regards, R -- You received this message because you are subscribed to the Google Groups Android

[android-developers] Scrollbar in AdapterView derived object

2010-01-11 Thread RIV
Hi All, I have a AdapterView derived class (say GridLayout) in which I arrange views in a grid. When items in the grid exceed the height of the GridLayout( or screen) I want a scrollbar to appear. I have handled scrolling in onTouchEvent. But the problem is the scrollbars don't appear. I have set

[android-developers] Scrollbar in AdapterView

2009-12-17 Thread RIV
Hi All, I have a AdapterView derived class (say GridLayout) in which I arrange views in a grid. When items in the grid exceed the height of the GridLayout( or screen) I want a scrollbar to appear. I have handled scrolling in onTouchEvent. But the problem is the scrollbars don't appear. I have set