Re: [android-developers] Re: disable the search key android alertdialog

2010-12-13 Thread varun tewari
Try using onSearchRequestedhttp://developer.android.com/reference/android/view/Window.Callback.html#onSearchRequested() (). Varun On Sat, Dec 11, 2010 at 11:30 PM, Mark Murphy mmur...@commonsware.comwrote: Put that in your Dialog subclass, then. On Sat, Dec 11, 2010 at 12:57 PM, acr

Re: [android-developers] Re: Emulator loses network connection issue

2011-01-30 Thread varun tewari
Guys i was suffering from the same issue. What i figured out in my case is, when i was connected to Wired Connection i wasn't able to see this problem and everything used to work fine. But when i connects sometime to Wireless Network i used to see this problem. What i noticed is, i used to make my

[android-developers] Re: Getting the Android Java source?

2011-02-07 Thread varun tewari
Can anybody tell me how this works. I use Ganymede. Updated eclipse with above mentioned URL. While debugging my code still says Source Not Found. Do i need to specify any path after updating my eclipse for this. Thanks in advance. VARUN On Dec 28 2010, 9:42 pm, John Lussmyer

Re: [android-developers] Re: Getting the Android Java source?

2011-02-07 Thread Varun Tewari
I found the downloaded source code under eclipse/plugins. Thanks anyways. VARUN On Mon, Feb 7, 2011 at 6:07 PM, varun tewari varuntewari2...@gmail.comwrote: Can anybody tell me how this works. I use Ganymede. Updated eclipse with above mentioned URL. While debugging my code still says Source

[android-developers] How to publish Motorolo Xoom Build to market

2011-02-22 Thread Varun Tewari
Hey Guys, We have some applications already in android market. We have managed to support *Motorola Xoom and Galaxy Tab2* for some of them. I was just wondering how i can publish my applciation as our existing application have 1.6 nd onwards support. So my application is already visible for XOOM

Re: [android-developers] How to publish Motorolo Xoom Build to market

2011-02-22 Thread Varun Tewari
Thanks for your precious time. Your first option is what i was going forward with. This makes more sense now :) . Thanks Reg, Varun -- 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] List onItemSelectedListener not working

2011-04-26 Thread Varun Tewari
Hey Guys, While working with fragments i am trying to have one list in left panel and detail fragment in right side of it. I have my first item item already selected as soon as i launch app. And SHOULD HOLD ITS SELECTED STATE I tried using onItemSelectedListener with setSelection(0), but it

[android-developers] Fwd: List onItemSelectedListener not working

2011-04-26 Thread Varun Tewari
the setSelection(0) inside onCreate()? onItemSelectedListener() will not be triggered by itself. Terence On Apr 26, 2:41 pm, Varun Tewari varuntewari2...@gmail.com wrote: Hey Guys, While working with fragments i am trying to have one list in left panel and detail fragment in right side

Re: [android-developers] Re: Fwd: List onItemSelectedListener not working

2011-04-26 Thread Varun Tewari
...@gmail.comwrote: So I assume your activity is in Touch mode. If you use setSelection() in Touch mode, there will be no visual effect. if you really think you want to get the first item highlighted, I might try using setItemChecked() see if it works. Terence On Apr 26, 3:18 pm, Varun Tewari

Re: [android-developers] Re: Fwd: List onItemSelectedListener not working

2011-04-26 Thread Varun Tewari
Thanks alot. It worked like a charm :) Reg, Varun On Tue, Apr 26, 2011 at 4:49 PM, Mark Murphy mmur...@commonsware.comwrote: On Tue, Apr 26, 2011 at 5:12 AM, Varun Tewari varuntewari2...@gmail.com wrote: setItemChecked() actually did'nt work with in case of onItemSelectedListener. Do

Re: [android-developers] Re: Fwd: List onItemSelectedListener not working

2011-04-26 Thread Varun Tewari
Thanks alot. It worked like a charm :) Reg, Varun On Tue, Apr 26, 2011 at 4:49 PM, Mark Murphy mmur...@commonsware.comwrote: On Tue, Apr 26, 2011 at 5:12 AM, Varun Tewari varuntewari2...@gmail.com wrote: setItemChecked() actually did'nt work with in case of onItemSelectedListener. Do

[android-developers] Fragments Map Support in Honeycomb

2011-05-02 Thread Varun Tewari
Hey Guys, I saw many blogs and forums for this. Their are no updates after mid April on this. Have we reached any conclusion ? Are there any upgrades provided by Android Native itself ? My app's minSdkVersion is 11, having List Frag in Left Panel and Details Frag in Right Panel which contains

Re: [android-developers] Fragments Map Support in Honeycomb

2011-05-03 Thread Varun Tewari
, TreKing treking...@gmail.com wrote: On Mon, May 2, 2011 at 12:54 PM, Varun Tewari varuntewari2...@gmail.comwrote: Is it possible to achieve with current Fragment Support ? http://groups.google.com/group/android-developers/browse_thread/thread/b705bbd72d28d000

Re: [android-developers] How to hide apps in the launcher?

2012-07-29 Thread Varun Tewari
You may need to create a Home Screen Launcher experience for yourself.creating a front-end interface as suggested by Kristopher..though its not the best design, but you may have your own reasons or client req, we understand. On Mon, Jul 30, 2012 at 9:19 AM, Kristopher Micinski

Re: [android-developers] Re: Implementing onShowCustomView on Android 3.1 throws in HTML5VideoFullScreen

2012-08-07 Thread Varun Tewari
at 8:41 AM, Zhao Rong zhaor...@gmail.com wrote: Hi Varun, Have your solved this problem? I meet the same one now... Thanks Rong Zhao On Sunday, March 11, 2012 10:20:25 PM UTC+8, varun tewari wrote: One problem i am facing currently is upon second launch of media player application

[android-developers] View Pager performance hit when inflating views

2012-05-07 Thread Varun Tewari
Guys, In my recent application, i had 80 items each one is a list view, in my View Pager. I observed a performance hit, if i create then *dynamically with Java code*v/s i *nflating view* from xml. I see a terrible lag in swiping left right, when i use inflating view approach...That's because

[android-developers] Re: View Pager performance hit when inflating views

2012-05-07 Thread Varun Tewari
lowered my view pager childs to 5 from 80, but no luck... Any expert advice ll be appreciated. Br, Varun On Mon, May 7, 2012 at 4:27 PM, Varun Tewari varuntewari2...@gmail.comwrote: Guys, In my recent application, i had 80 items each one is a list view, in my View Pager. I observed

Re: [android-developers] Re: View Pager performance hit when inflating views

2012-05-08 Thread Varun Tewari
Thanks for your reply. Actually there are some more items below List, per page. Now i have to create another ViewPager and sync scrolls between them I know that doesn't look very clean, but looks like no other option for me.. Br, Varun On Mon, May 7, 2012 at 6:31 PM, Jason Teagle

Re: [android-developers] Re: Pls send me android souce code....

2011-12-19 Thread Varun Tewari
hahahha. On Tue, Dec 20, 2011 at 10:40 AM, John Coryat cor...@gmail.com wrote: Here you go: http://bit.ly/ucalcF -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

Re: [android-developers] Customize Android Source Code to run multiple Application on same Screen.

2011-12-20 Thread Varun Tewari
I have encountered similar situation. The only difference is i don't want to preview different application created by others. I have multiple apks each one has one preview to show inside one base application. All these previews in each apk, is a fragment of 2x2. Can anybody help me with that?

[android-developers] Showing fragment of multiple apks in other apk's activity

2011-12-20 Thread Varun Tewari
Guys, I have encountered a situation which i don't know how to proceed with. I have multiple apks , each one has one preview to show inside one base activity of other apk. All these previews in each apk, is a fragment of 2x2. Is there a way i can do it on SDK level? If yes can anybody help me

[android-developers] Re: Showing fragment of multiple apks in other apk's activity

2011-12-20 Thread Varun Tewari
I know we can share layouts from other apks. Have successfully did it. But not able to inflate layouts with Fragments from others apk. Do we need to specify anything special for it. Reg, Varun On Tue, Dec 20, 2011 at 4:45 PM, Varun Tewari varuntewari2...@gmail.comwrote: Guys, I have

[android-developers] Preloaded Widget in Custom Launcher

2011-07-25 Thread Varun Tewari
Guys, While working on my own launcher, i tried to integrate my launcher with a set of my own widgets. I want these widgets to be pre-installed (don't by widget pick list). I have bind widget permission in place, but it gives me an error User 10032 does not have android.permission.BIND_APPWIDGET

[android-developers] Re: Preloaded Widget in Custom Launcher

2011-07-25 Thread Varun Tewari
, 2011 at 3:26 PM, Varun Tewari varuntewari2...@gmail.comwrote: Guys, While working on my own launcher, i tried to integrate my launcher with a set of my own widgets. I want these widgets to be pre-installed (don't by widget pick list). I have bind widget permission in place, but it gives me

Re: [android-developers] Out of Memory Exception

2011-07-25 Thread Varun Tewari
Make sure you are using different set of graphics for ldpi/mdpi/hdpi/etc. Or else it will scale drawables from base folder, which eats cpu cycles and lots of memory. Reg, Varun On Mon, Jul 25, 2011 at 10:23 PM, Nick Risaro nris...@gmail.com wrote: I think the problem is with your background,

[android-developers] Re: Fragments Map Support in Honeycomb

2011-08-01 Thread Varun Tewari
MapActivity. Reg, Varun On Mon, Aug 1, 2011 at 6:26 PM, narendra bagdwal narendra.bagd...@gmail.com wrote: Hi Varun can u send sample code for that. Thanks, On May 3, 8:48 pm, Varun Tewari varuntewari2...@gmail.com wrote: @TreKing: Thanks for sharing this thread. I actually fixed my

Re: [android-developers] HTML5 video tag and Amazon S3

2012-03-07 Thread Varun Tewari
Hey, I recently fell into similar problem. Browsing through web i came to know the problem is known to amazon, follow the thread for the same https://forums.aws.amazon.com/thread.jspa?threadID=77663; It has to do with https protocol. Try using http instead, works very well to me. Br, Varun On

Re: [android-developers] Re: Implementing onShowCustomView on Android 3.1 throws in HTML5VideoFullScreen

2012-03-11 Thread Varun Tewari
One problem i am facing currently is upon second launch of media player application is getting crashed because i have not stopped playback and released Media player. As VideoSurfaceView object, which we get in onShowCustomView function from 3.0 OS, are specific to browser and not a VideoView

[android-developers] Send Sms Bug in 2.3 OS

2011-09-04 Thread Varun Tewari
Guys, While working on a AutoReply app i found a bug which is bit strange. I have a receiver for SMS RECEIVED. It start a service to send message using below api smsManager.sendTextMessage(number, null, message, PendingIntent.getBroadcast( this, 0, new

[android-developers] UI Automator Viewer from SDK tools Revision 21

2013-03-12 Thread Varun Tewari
I have posted a question on Stack Overflow http://stackoverflow.com/questions/15347294/ui-automator-viewer-from-sdk-tools-revision-21 Please add to it if anyone knows the answer. Reg, Varun -- -- You received this message because you are subscribed to the Google Groups Android Developers