[android-developers] Putting an android watch in Kiosk mode

2016-06-21 Thread Leela Herman
Hi Everyone, I am a product manager of a medical application written for Android watches we use : Sony smart watch 3 and LG Watch Urbane 2nd Edition Since some of our users are elderly and do not know how to use

[android-developers] Multi touch zoom in or out

2011-03-14 Thread leela
-- Leela Krishna. -- 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+unsubscr...@googlegroups.com For more

Re: [android-developers] Re: Problem with GridView

2011-03-14 Thread leela kissnaa
to remove any images from the layout... you can just fire off an intent to view the image. Thanks, Justin Anderson MagouyaWare Developer http://sites.google.com/site/magouyaware On Fri, Mar 11, 2011 at 5:47 AM, leela kissnaa morampudile...@gmail.comwrote: topLayout.removeAllViews

Re: [android-developers] Re: Multi touch zoom in or out

2011-03-14 Thread leela kissnaa
ACTION_POINTER_UP and ACTION_POINTER_DOWN for multi touch. read something about these and you will figure it out. --Varun On Mar 14, 10:58 am, leela morampudile...@gmail.com wrote: Hi all.. i want to show images on the screen.. which would zoom in/out on multi touch(pinch,spread

[android-developers] Multi touch zooms for ImageView

2011-03-14 Thread leela
Hi, I want my image will be zoom-able on multi touch.. my device supports multi touch for WebView So please tell me how to make my ImageView also supports multitouch.. please suggests me.. Thanks Regards -- Leela Krishna -- You received this message because you

Re: [android-developers] Multi touch zooms for ImageView

2011-03-14 Thread leela kissnaa
(); } } catch (Exception e) { // nothing } return true; } } this code in activity.## On Mon, Mar 14, 2011 at 6:10 PM, TreKing treking...@gmail.com wrote: On Mon, Mar 14, 2011 at 2:46 AM, leela morampudile...@gmail.com wrote: So please tell me how

Re: [android-developers] GridView.scrollTo(int,int) is not working

2011-03-11 Thread leela kissnaa
Thanks.. that works for me .. On Fri, Mar 11, 2011 at 1:13 PM, Romain Guy romain...@android.com wrote: GridView doesn't support the use of scrollTo(). Also, scrollTo() takes distances in pixels. Use setSelectedPosition(20) instead. On Thu, Mar 10, 2011 at 11:28 PM, leela morampudile

Re: [android-developers] Re: Problem with GridView

2011-03-11 Thread leela kissnaa
Let us see your code, please... On Mar 11, 7:38 am, leela morampudile...@gmail.com wrote: Hi all, i am working on gridView which will show images.. initially the gridView will show all thumbniles images.. once click on any thumbnile i need to show that gridVeiw in full screen

[android-developers] get Notification on specified time.

2011-03-11 Thread leela
Hi flocks... i have requirement here.. from my application i want do some task by tomorrow 5:30... so.. i want some notification by that time..to my app.. so i can do that work... just like schedulers how can i do that.. can i use Alarm/Calendar here.. if i use BroadCastRecever how will send

[android-developers] TranslateAnimation and scaleAnimation run at a time.

2011-03-10 Thread leela
Hi all, i am able to run Scale adn Translate animations one after another is it possible to run both at a time.. if possible please help me with some solution.. thanks in advance -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to

[android-developers] Problem with GridView

2011-03-10 Thread leela
Hi all, i am working on gridView which will show images.. initially the gridView will show all thumbniles images.. once click on any thumbnile i need to show that gridVeiw in full screen. here the problem is if user clicks on 5th image i need to show 5th image of gridView in full screen But,i

[android-developers] GridView.scrollTo(int,int) is not working

2011-03-10 Thread leela
Hi all, while populating my GridView/listView i want to show 20th item first.. i was tried to scroll up to that position by calling gridView.scrollTO(20,20); this is not working.. means it's always showing first item.. any suggestions Thanks in Advance... -- You received this message

[android-developers] Getting starts with Honycomb Animation

2011-03-09 Thread leela
Hi All, in my layout i have thumbnile images at bottom. if i clicks on them the actual/full image will appear on full screen. functionally it is working.. But, i want to show this behavior with animation. Just like the thumbnile is growing and form full image. can you please refer me any good

[android-developers] implementation of OnTouchListener is not working in HonyComb (Which is worked properly on 2.3)

2011-03-09 Thread leela
i have implemented OnTouchListener for my view which uses the gestureDetecter. here i am posting my code.. ### Code starts here # public WebText(Context context) { super(context); initilizeAll(context); } public void

Re: [android-developers] Honeycomb orientation

2011-03-09 Thread leela kissnaa
...@googlegroups.com For more options, visit this group at http://groups.google.com/group/android-developers?hl=en -- Thanks Regards, Leela Krishna m -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android

[android-developers] show selected item on the screen form gridView

2011-03-09 Thread leela
Hi All, I have GridView in my layout which consists of 10 images in single column. if user enter number(1 to 10) in edittext which i provided, i need to scroll down to that image in GridView and show it. setSelection(no); is also not working.. -- You received this message because you are

[android-developers] how can i refresh my adapter

2009-09-12 Thread leela
i am developing file browser to my media player UI i have written in my OnItemClickListener() in that i called the method like adapter.notifyDataSetInvalidated() method but it is not working please help me to refresh my list.based on onItemClickListener() method please help me thanks in