[android-developers] image view ( capture signature ) disappears after adding scrollview

2016-03-31 Thread mushspace
Hi, http://www.mysamplecode.com/2011/11/android-capture-signature-using-canvas.html I have used code from this link to capture signature. It works. But further on, I had to add more edittext's. This needs a scroll view as it does not fit into a screen. In doing so, the image view

[android-developers] Image view and then a grid view - make them all scrollable

2014-07-28 Thread sweety fx
I have an image view on top and then grid view. I want all both the image view and grid view scrollable together, but only the grid view is scrolls. Is there a way to implement it? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to

[android-developers] image view on Customized dialog box

2012-11-22 Thread Mr cool
I have one problem with customized dialog box in android,i have created the customized dialog using javainterface in android ,in my class CustomizeDialog i have one thread do some process in back ground after that i have set one imgae to this customized dialog i set the image in OnPostExecute

Re: [android-developers] image view

2011-07-31 Thread Nick Risaro
Try this http://developer.android.com/reference/android/widget/ImageButton.html On Sun, Jul 31, 2011 at 2:45 AM, arun kumar arun.kata...@gmail.com wrote: HI how to make imageview as highlight i given imageview when i on click on that it has to become highlight(background has to become

[android-developers] image view

2011-07-30 Thread arun kumar
HI how to make imageview as highlight i given imageview when i on click on that it has to become highlight(background has to become focus ... -- 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] image view listener

2011-07-15 Thread arun kumar
Hi am having two image one is placed rightside and other is placed leftside to the layout when i click on image 1 image 3 has to display inbetween image 1 and image 2similarly when i click on image 2... image 4 has to display inbetween image1 and image2 for me here when i

[android-developers] Image view from drawable folder path

2010-11-11 Thread Sripati Misra
Hi, I want to show image from drawable folder using path (res/drawable/icon.png). I do not want to use R.drawable.icon. Please anybody know how to view the image using res/drawable/icon.png. Thanks, Sripati -- You received this message because you are subscribed to the Google Groups Android

Re: [android-developers] Image view from drawable folder path

2010-11-11 Thread Kumar Bibek
You cannot do that way. On Thu, Nov 11, 2010 at 3:36 PM, Sripati Misra sripati.mi...@gmail.comwrote: Hi, I want to show image from drawable folder using path (res/drawable/icon.png). I do not want to use R.drawable.icon. Please anybody know how to view the image using res/drawable/icon.png.

Re: [android-developers] Image view from drawable folder path

2010-11-11 Thread Kostya Vasilyev
Any particular reason you don't want to use R.drawable.icon? 11.11.2010 13:06, Sripati Misra пишет: Hi, I want to show image from drawable folder using path (res/drawable/icon.png). I do not want to use R.drawable.icon. Please anybody know how to view the image using res/drawable/icon.png.

Re: [android-developers] Image view from drawable folder path

2010-11-11 Thread Sripati Misra
Yes I got the solution. Please go through this link : http://steven.bitsetters.com/2007/11/27/accessing-android-resources-by-name-at-runtime/ Here after getting id, we can use anywhere. Thanks, Sripati On Thu, Nov 11, 2010 at 3:41 PM, Kumar Bibek coomar@gmail.com wrote: You cannot do that

Re: [android-developers] Image view from drawable folder path

2010-11-11 Thread Kostya Vasilyev
Ah, so you just needed to access a resource by string, not numeric, id. Yes, that's the trick. -- Kostya 11.11.2010 15:59, Sripati Misra ?: Yes I got the solution. Please go through this link : http://steven.bitsetters.com/2007/11/27/accessing-android-resources-by-name-at-runtime/ Here

Re: [android-developers] Image view from drawable folder path

2010-11-11 Thread Sripati Misra
Yes, Anyhow i got the solution according to my requirement. Thanks for quick response. Thnanks, Sripati On Thu, Nov 11, 2010 at 6:45 PM, Kostya Vasilyev kmans...@gmail.com wrote: Ah, so you just needed to access a resource by string, not numeric, id. Yes, that's the trick. -- Kostya