[android-developers] Re: Image scaling on Sony Ericsson Xperia phone

2018-02-19 Thread anon ymous
Hi Mr Johan, I am developing a chat app for my final year project. So what I am doing is that the image on the sender's phone is being scaled down to 20 by 20 sp. When it reaches the destination i want that image to be scaled up to 100 by 100 sp. I had downloaded the code provided from

[android-developers] Re: Image adquisicion app

2016-03-02 Thread gjs
Read http://developer.android.com/training/camera/cameradirect.html -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To unsubscribe from this group and stop receiving emails from it, send an email to

Re: [android-developers] Re: Image adquisicion app

2016-03-02 Thread Justin Anderson
Try again... On Tue, Mar 1, 2016 at 7:04 PM developer wrote: > i need acquire image and have control on the flashlight to turn on or turn > off while i see image of the camera. > > -- > You received this message because you are subscribed to the Google Groups >

[android-developers] Re: Image adquisicion app

2016-03-01 Thread developer
i need acquire image and have control on the flashlight to turn on or turn off while i see image of the camera. -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To unsubscribe from this group and stop receiving emails from it, send an

[android-developers] Re: Image is being oriented differently once uploaded to server, why?

2015-04-13 Thread catafest
I think it's a stack effect over ftp client ...See the first answer of Matt Gibson , from your link tutorial ... - Found at this link: http://stackoverflow.com/questions/24629584/image-orientation-changes-while-uploading-image-to-server ...

Re: [android-developers] Re: Image is being oriented differently once uploaded to server, why?

2015-04-13 Thread Daniel Chacon
Yea that i had found and attempted to implement within my existing code, but everything works fine within the phone/device, but not when uploaded. int rotate = 0; try { BitmapFactory.Options options = new BitmapFactory.Options(); options.inSampleSize = 10;

[android-developers] Re: Image is being oriented differently once uploaded to server, why?

2015-04-12 Thread Doug Gordon
I've seen this happen in a number of places when uploading images. The basic issue is that there are two ways to save a rotated image: save the raster data in the correct orientation and without metadata, or save the raster data in its native orientation and set the metadata value to indicate

[android-developers] Re: Image is being oriented differently once uploaded to server, why?

2015-04-11 Thread Dan Cha
Can someone tell me if this line in the code actually rewrites the image with the new settings or is this merely in memory and not touching the original image.. It would be great to fix the orientation and resize the image before being stored, so that the upload image is already the

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

2014-08-01 Thread Vrunda
You can scroll top image in horizontal, by using Scrollview Horizontal, if there is multiple image at top. On Monday, 28 July 2014 21:56:04 UTC+5:30, sweety fx wrote: 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

[android-developers] Re: Image captured from my app is rotated by default

2014-03-25 Thread Doug Gordon
This may not be related to your problem, but I believe that there are basically two ways that the orientation of a JPEG photo is determined. One is simply by the way the actual data in the file is laid out; for example, whether it is stored as 1024x768 or 768x1024. The other determinate is an

[android-developers] Re: Image captured from my app is rotated by default

2014-03-25 Thread Nobu Games
This is expected behavior, and Doug's assumption is right. JPEG images may contain EXIF http://en.wikipedia.org/wiki/Exchangeable_image_file_formatdata blocks that also specify the orientation of the image. On your server you need to read the orientation data and use it to rotate the image into

[android-developers] Re: image not coming proper some times lazy loading grid view

2013-12-04 Thread Streets Of Boston
Not sure if this would work, but may be worth a try: Before you close the FileOutputStream 'fs', have you tried to call fs.getFD(),sync() ? On Wednesday, December 4, 2013 3:00:43 AM UTC-5, Amit Mangal wrote: Hi there, i am loading images on grid view using lazy loading from network. problem

[android-developers] Re: Image to Video Converter In android

2013-08-02 Thread bobbybrend
Videos are encoded in many different formats for different devices and it is necessary to convert your videos to a format compatible with the Android operating system. Professional video conversion applications are expensive, but there are many free programs available for Macintosh and Windows

[android-developers] Re: image issue while view it as base64 in android mobile2.3

2013-03-18 Thread senthil kumar
Store the image as base64 in sqlite browser but we are not able to see the 5 or 6 image. In samasung galaxy y we only see 2 image which we store.In Lemon mobile we only see 2 or 4 images. In micromax only to see 5 or 6 image after that all image we took is seen as black screen we don't know

[android-developers] Re: image issue while view it as base64 in android mobile2.3

2013-03-14 Thread bob
I would try storing the image as a BLOB instead of base64. Thanks. On Wednesday, March 13, 2013 11:17:24 PM UTC-5, senthil kumar wrote: Hi, Using phone and javascript in our application. we want to see the image as base64 from the sqlite db. In some mobile all the image(i.e 4 or

[android-developers] Re: Image Gallery

2013-03-11 Thread Piren
ffs: http://developer.android.com/training/displaying-bitmaps/index.html On Monday, March 11, 2013 11:16:48 AM UTC+2, Ambika Kulkarni wrote: Dear Folks, I am a new bee to Android. I want to create a Image Gallery. With Next and PRevious buttons.I want to have this image sclaed with full

[android-developers] Re: Image background (not 9-patch) for an AppWidget

2012-12-05 Thread Mário César Mancinelli de Araújo
I created a file digital_clock_background.xml (inside res/drawable) and put this code: ?xml version=1.0 encoding=utf-8? shape xmlns:android=http://schemas.android.com/apk/res/android; android:padding=10dp android:shape=rectangle solid android:color=#00 / stroke

Re: [android-developers] Re: Image background (not 9-patch) for an AppWidget

2012-12-05 Thread vinay kumar
Hi, They are number of solution available online but one of them is to recreate a your bitmap with rounded corners. public static Bitmap getRoundedCornerBitmap(Bitmap bitmap, int pixels) { Bitmap output = Bitmap.createBitmap(bitmap.getWidth(), bitmap .getHeight(),

Re: [android-developers] Re: Image background (not 9-patch) for an AppWidget

2012-12-05 Thread Mário César Mancinelli de Araújo
Not really... First of all, how do I discover the value of pixels? Because it depends on the Android version, on the manufacture of the equipament... And, most important, I don't have access to the ImageView (I can set properties, but not get because of the RemoteViews). Other thing is that the

[android-developers] Re: image view on Customized dialog box

2012-11-22 Thread Piren
not sure why you're using the .Show() method, its best to use onCreateDialog for custom dialogs as well. but either way, ASyncTasks dont run onPostExecute on the UI thread automatically, the run it on the thread the ASyncTask was created in. To avoid your issue either add a Handler to run the

Re: [android-developers] Re: image view on Customized dialog box

2012-11-22 Thread ponnu swamy
but how can i use runOnUiThread method because i extend my customized dialog class from dialog class not from activity -- 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

Re: [android-developers] Re: image view on Customized dialog box

2012-11-22 Thread Piren
It's a view, it can get the activity. On Thursday, November 22, 2012 4:24:33 PM UTC+2, Mr cool wrote: but how can i use runOnUiThread method because i extend my customized dialog class from dialog class not from activity -- You received this message because you are subscribed to the

[android-developers] Re: image passing ?

2012-09-30 Thread skink
mohammed Nuhail wrote: How to send a image from one activity to another activity ? in extras as a Parcelable? pskink -- 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] Re: image passing ?

2012-09-30 Thread mohammed Nuhail
can i send jpeg image ? On Sun, Sep 30, 2012 at 4:32 PM, skink psk...@gmail.com wrote: mohammed Nuhail wrote: How to send a image from one activity to another activity ? in extras as a Parcelable? pskink -- You received this message because you are subscribed to the Google Groups

Re: [android-developers] Re: image passing ?

2012-09-30 Thread skink
mohammed Nuhail wrote: can i send jpeg image ? if you have any image in your filesystem then send its Uri, otherwise if you have in-memory bitmap pass it as a Parcelable pskink -- You received this message because you are subscribed to the Google Groups Android Developers group. To post

Re: [android-developers] Re: image passing ?

2012-09-30 Thread vinay kumar
Where does this jpeg images exists? On Sun, Sep 30, 2012 at 4:51 PM, mohammed Nuhail nuhail...@gmail.comwrote: can i send jpeg image ? On Sun, Sep 30, 2012 at 4:32 PM, skink psk...@gmail.com wrote: mohammed Nuhail wrote: How to send a image from one activity to another activity ? in

[android-developers] Re: Image Capture

2012-07-31 Thread sham gowda
Dude can you mail me the source code to capture images and to store in SD card plz On Friday, 12 June 2009 20:11:17 UTC+5:30, hanged_man wrote: i've written a class to capture an image and save it to the SD card, if you wish to take a look at it, PM me and id be more than willing to send

Re: [android-developers] Re: Image Capture

2012-07-31 Thread Raghav Sood
Dude can you mail me the source code to capture images and to store in SD card plz How much are you paying me? Thanks -- Raghav Sood Please do not email private questions to me as I do not have time to answer them. Instead, post them to public forums where others and I can answer and

[android-developers] Re: image show with zoom/pan

2012-07-02 Thread guich
nobody? -- 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 options,

RE: [android-developers] Re: image show with zoom/pan

2012-07-02 Thread Tommy Hartz
http://bit.ly/NqThF7 not that hard was it.. From: android-developers@googlegroups.com [mailto:android-developers@googlegroups.com] On Behalf Of guich Sent: Monday, July 02, 2012 8:33 PM To: android-developers@googlegroups.com Subject: [android-developers] Re: image show with zoom/pan

[android-developers] Re: Image Processing library

2012-04-16 Thread Farhan Tariq
I am looking for something like this itunes.apple.com/us/app/*fatbooth* /id372268904?mt=8 On Mon, Apr 16, 2012 at 6:01 PM, Farhan Tariq farhan@gmail.com wrote: Hi, I am required to make an application that takes picture from camera and modify the picture. I wanted to know if there are

Re: [android-developers] Re: Image Processing library

2012-04-16 Thread David Olsson
Take a look at OpenCV for Android: http://code.opencv.org/projects/opencv/wiki/OpenCV4Android On Mon, Apr 16, 2012 at 3:02 PM, Farhan Tariq farhan@gmail.com wrote: I am looking for something like this itunes.apple.com/us/app/*fatbooth */id372268904?mt=8 On Mon, Apr 16, 2012 at 6:01

Re: [android-developers] Re: Image Processing library

2012-04-16 Thread anuragpratap singh
Hi Farhan I guess, the application that you want to create is already present in the new android version 4.0 (ICS). this effect is known as live effects and this effect works for both still capture and video record. Please check *Live Effects* on android site. Thanks and Regards Anurag On Mon,

Re: [android-developers] Re: Image Processing library

2012-04-16 Thread Farhan Tariq
It may be present, but I would like to learn how to apply the same or similar effects to pictures myself. Once I have learnt it, I might be able to put in more creativity into it. On Mon, Apr 16, 2012 at 10:27 PM, anuragpratap singh anurag1...@gmail.comwrote: Hi Farhan I guess, the

[android-developers] Re: Image to Video Converter In android

2012-04-12 Thread Giuseppe
Hi Arun, I am looking for similar solution but not for facebook, did you found a way? -- 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,

[android-developers] Re: Image to Video Converter In android

2012-04-09 Thread Arun
Dear Nagaraj, My requirement is differnt, i had created a slideshow of images and now i want to share, and for that reson i think to convert slideshow into video and share it, What you think, is this the Right way to do this. Thanks for your reply, n waiting for another. Regards Arun On Apr

[android-developers] Re: Image loading in Gridview

2012-03-30 Thread EhyehAsherEhyeh
Try AsyncTask? You can have doInBackground downloading the images, then call publishProgress for each image completed, and have onProgressUpdate update the gridview. You should have no problem finding tutorials on how to use AsyncTask with a quick search. On Mar 29, 11:31 am, Febi.M.Felix

[android-developers] Re: Image loading in Gridview

2012-03-30 Thread Febi.M.Felix Maliakkal
Thank You...:) On Friday, March 30, 2012 1:32:24 PM UTC+5:30, EhyehAsherEhyeh wrote: Try AsyncTask? You can have doInBackground downloading the images, then call publishProgress for each image completed, and have onProgressUpdate update the gridview. You should have no problem finding

[android-developers] Re: Image CoverFlow not working fine with Android 4.0

2012-03-30 Thread sblantipodi
Ok I fixed the library, now it works. On 30 Mar, 16:06, sblantipodi perini.dav...@dpsoftware.org wrote: Hi, I'm working with coverflow, the images are displayed and working fine in android 2.3.6 and below versions but is not displayenter image description hereed properly in android 4.0 and

[android-developers] Re: Image on external storage

2012-03-07 Thread bt
Nobody can help me? On Mar 5, 12:39 pm, bt barta...@gmail.com wrote: Hi, I would like to display an image from external storage which is 72x72 px. My device has high density. The image view height and width are wrap_content. I got different results if I load the image or use an URL. If

[android-developers] Re: Image Button Onclik view

2012-02-22 Thread moktarul anam
Hi kholif, u can use ImageView.setOnclickListener(new setOnclick(){ Onclick(view){ /// user hide/display code here } } Moktarul On Feb 21, 5:33 pm, kholif adig adig...@gmail.com wrote: hi I have some problems in image button I have some image button that when clicked on the button will

[android-developers] Re: Image Button Onclik view

2012-02-22 Thread Seshu
Hi kholif, in xml file for imageview add this one android:onclick=imageBtnClicked and in corresponding java file add this method: public void imageBtnClicked(View v) { // add your code here } On Feb 22, 1:58 pm, moktarul anam mokta...@gmail.com wrote: Hi kholif, u can

[android-developers] Re: Image Button Onclik view

2012-02-22 Thread adig
Hi. . thanks for all the solutions. . :D On 22 Feb, 16:07, Seshu s.seshu...@gmail.com wrote: Hi kholif,             in xml file for imageview add this one android:onclick=imageBtnClicked and in corresponding java file add this method: public void imageBtnClicked(View v) { // add your

[android-developers] Re: Image Button Onclik view

2012-02-21 Thread adig
hi I'll send an email to you and I will include pictures that can explain the intent of my question. . hopefully help thank you On 22 Feb, 06:17, TreKing treking...@gmail.com wrote: On Tue, Feb 21, 2012 at 6:33 AM, kholif adig adig...@gmail.com wrote: please give me a solution Please

Re: [android-developers] Re: Image Button Onclik view

2012-02-21 Thread TreKing
On Tue, Feb 21, 2012 at 8:00 PM, adig adig...@gmail.com wrote: I'll send an email to you Uh, no. Please reply to this thread and the whole group. - TreKing

[android-developers] Re: Image button Issue

2012-02-12 Thread mark2011
Dear fei ji : Thanks for your kindly response. I had tried to use dip instead of px, but it doesm't work. Should I add anything except dip? BR, Mark On Feb 10, 7:31 pm, fei ji ufo22940...@gmail.com wrote: Did you use dip when setting height and width of ImageButton? On Fri, Feb 10,

[android-developers] Re: Image comparison problem: getPixel() in android and getRGB() in JDK return different values for the same image

2012-02-05 Thread Ergen
The problem was the JPG format. With PNG it works On 4 Feb., 01:42, gjs garyjamessi...@gmail.com wrote: Hi, Also maybe try .png format if possible. Regards On Feb 4, 8:21 am, Romain Guy romain...@android.com wrote: First make sure that both return values in the same format

[android-developers] Re: Image comparison problem: getPixel() in android and getRGB() in JDK return different values for the same image

2012-02-05 Thread Ergen
The problem was the JPG format. On 3 Feb., 22:21, Romain Guy romain...@android.com wrote: First make sure that both return values in the same format (Android returns ARGB not RGBA.) Also, f I remember correctly, Java2D can apply color profiles when loading a bitmap. On Feb 3, 2012 11:05 AM,

[android-developers] Re: Image comparison problem: getPixel() in android and getRGB() in JDK return different values for the same image

2012-02-04 Thread Ergen
Thanks. I've thought about it. And I tried to change the format _after_ loading the image. I created a new image IMG2 with new BufferedImage(width, hight, IMAGE_TYPE) and copied old image (also IMG1) into the new image as IMG2.createGraphics().drawRenderedImage(IMG1,null) Then i've tested all the

[android-developers] Re: Image comparison problem: getPixel() in android and getRGB() in JDK return different values for the same image

2012-02-04 Thread Ergen
Thanks. I tried it once, but that changed nothing. I'll try it again. I need solve the problem somehow. :) On 4 Feb., 01:42, gjs garyjamessi...@gmail.com wrote: Hi, Also maybe try .png format if possible. Regards On Feb 4, 8:21 am, Romain Guy romain...@android.com wrote: First

[android-developers] Re: Image comparison problem: getPixel() in android and getRGB() in JDK return different values for the same image

2012-02-03 Thread gjs
Hi, Also maybe try .png format if possible. Regards On Feb 4, 8:21 am, Romain Guy romain...@android.com wrote: First make sure that both return values in the same format (Android returns ARGB not RGBA.) Also, f I remember correctly, Java2D can apply color profiles when loading a bitmap. On

[android-developers] Re: Image Quality problems using Canvas and canvas.scale(Scale, Scale);

2012-01-25 Thread JamesColeman
Thank you for your reply, I appreciate the input! Overall I agree with what you are saying about the bleeding obvious. However, I down scaled the exact same images on BlackBerry's and had no problems whatsoever. In our graphics arts, I downscale graphics all the time and end up with great

[android-developers] Re: Image Quality problems using Canvas and canvas.scale(Scale, Scale);

2012-01-22 Thread Peter Webb
At the risk of stating the bleeding obvious, if you upscale a bitmap *anywhere* in your code by a factor which is not an exact integer (1, 2, 3, etc) then the system will not be able to exactly reproduce the original image, and will be interpolating and/or duplicating pixels to make it fit. Which

[android-developers] Re: image to text android OCR help?

2011-12-15 Thread Nikolay
There are Java APIs which wrap calls for native interfaces, for example, for one of the most popular opensource OCR engines - Tesseract (http://groups.google.com/group/tesseract-ocr/) - there are some Java wrappers like tesjeract (http://code.google.com/p/ tesjeract/) or Tess4J

[android-developers] Re: Image dpi, does Android care about it?

2011-10-06 Thread Studio LFP
Check out this documentation: http://developer.android.com/guide/practices/screens_support.html#qualifiers Different image densities can be stored in different folders so Android can pick the best one suited for the device. Android also scales images when loaded unless they are stored in the

[android-developers] Re: Image processing

2011-09-27 Thread ko5tik
On 24 Sep., 12:26, Venki itzmesri...@gmail.com wrote:        I know Image Processing. I don't know anything about android though. I know Java, J2EE so I think I know some basics.I have planned to do some android apps using image processing. Where should I start? Give me some tutorial related

[android-developers] Re: Image processing

2011-09-27 Thread ko5tik
... damn german keyboard On 27 Sep., 08:34, ko5tik kpriblo...@yahoo.com wrote: On 24 Sep., 12:26, Venki itzmesri...@gmail.com wrote:        I know Image Processing. I don't know anything about android though. I know Java, J2EE so I think I know some basics.I have planned to do some

[android-developers] Re: Image processing

2011-09-27 Thread Yan
FYI: There's an awesome app in the Android Market called Paper Camera that's doing some kind of image processing. You should look into how they implemented it. Check out their YouTube demo at: https://market.android.com/details?id=com.dama.papercamera On Sep 26, 11:54 pm, ko5tik

[android-developers] Re: Image processing

2011-09-26 Thread Indicator Veritatis
You should start with the chapter on running Sobel Edge Detection on Android using the NDK in Android in Action, 2nd or 3rd edition. The 3rd edition is really written for Honeycomb, so you might want to go ahead and buy the 2nd which is already available. Or go to the website for the book and

[android-developers] Re: image btton problem

2011-08-27 Thread Amit
Use png with transparency. I use gimp for this. Thanks, A On Aug 26, 1:54 pm, Ratheesh Valamchuzhy android...@gmail.com wrote: The image is a png image... -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group,

[android-developers] Re: image won't show

2011-08-24 Thread Jeremy Dagorn
Hi, Why you don't do something like that : String imageUrl = file:///android_asset/smiley.png; WebView wv = new WebView(this); // or findViewById in your case wv.loadUrl(imageUrl); On Aug 23, 9:49 pm, bob b...@coolgroups.com wrote:                 Anyone know why this image won't show?

[android-developers] Re: Image Map Type style Overlay in MapView

2011-08-24 Thread EVK
Scott. Thanks for sharing this. I got ImageMapType working on Javascript using getTileUrl method of the Google Maps API V3. But I am not sure how to do this on Android's native MapView object. I am sifting the WWW for a relevant tutorial which can help me do this, luckily I found your post.

[android-developers] Re: image won't show

2011-08-24 Thread bob
Hmm... That worked, but I need HTML mixed with the image. Do you know how to do that? On Aug 24, 1:49 am, Jeremy Dagorn jeremy.dag...@gmail.com wrote: Hi, Why you don't do something like that : String imageUrl = file:///android_asset/smiley.png; WebView wv = new WebView(this); // or

[android-developers] Re: image won't show

2011-08-24 Thread skink
On Aug 24, 10:40 pm, bob b...@coolgroups.com wrote: Hmm... That worked, but I need HTML mixed with the image.  Do you know how to do that? On Aug 24, 1:49 am, Jeremy Dagorn jeremy.dag...@gmail.com wrote: Hi, Why you don't do something like that : String imageUrl =

[android-developers] Re: Image Gallery

2011-08-02 Thread zahiritpro
@TreKing:Can i get the source code of any good gallery application so that i can add few features and submit as a mini project... On Jul 30, 1:45 am, TreKing treking...@gmail.com wrote: On Wed, Jul 27, 2011 at 2:29 PM, zahiritpro zahirit...@gmail.com wrote: How to develop an application that

Re: [android-developers] Re: Image Gallery

2011-08-02 Thread TreKing
On Mon, Aug 1, 2011 at 8:53 AM, zahiritpro zahirit...@gmail.com wrote: @TreKing:Can i get the source code of any good gallery application so that i can add few features and submit as a mini project... IDK - look at the Android source, assuming the default image viewer app is in there, or

[android-developers] Re: Image buttons selector XML - how to align with phone's original theme?

2011-08-02 Thread Eric
Any idea? Is it possible to simulate a button click and the app captures the color of the pressed button? Thanks! -- 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

[android-developers] Re: Image Issue Please help me

2011-07-16 Thread Ankit Kasliwal
is there is no one which help me in camera issue. On Fri, Jul 15, 2011 at 4:40 PM, Ankit Kasliwal kasliwalankit2...@gmail.com wrote: Hello Everyone, Is there anyway to reduce the resolution of picture taken using camera? It takes long time to upload the image to server Coz i m converting

[android-developers] Re: Image scaling on Sony Ericsson Xperia phone

2011-07-07 Thread Johan Abramsson
Hi, I am glad you liked the article, Andreas has done a really great job. I will forward your thoughts into the customer service organisation. Thanks for letting us know. Kind regards /Johan On Jul 6, 8:37 pm, Martin Sall maris.seiman...@gmail.com wrote: Really nice article. It is great to

[android-developers] Re: Image scaling on Sony Ericsson Xperia phone

2011-07-06 Thread Martin Sall
Really nice article. It is great to see development related tutorials from Sony Ericsson lately. But I would like to ask about font scaling. I myself am visually impaired since birth (but still a software developer) and I know many people who wish to use Android devices but cannot do that

[android-developers] Re: Image Map Type style Overlay in MapView

2011-07-01 Thread Scott Kennedy
I figured it out. For anyone else who might be interested, the map tiles on Android's MapView seem to be twice as dense as the JS API's. So if you have an existing tileset, just read them in with an inSampleSize of 2, and adjust the positioning accordingly. On Jul 1, 1:20 pm, Scott Kennedy

[android-developers] Re: Image scaling on Sony Ericsson Xperia phone

2011-06-27 Thread Johan Abramsson
Hi, This article does, of course, apply to any android phone. Since we updated the blog post with a link to tis article the link to the blog post has changed. The new link is here, http://blogs.sonyericsson.com/wp/2011/06/27/how-to-scale-images-for-your-android%E2%84%A2-application/ We apologize

[android-developers] Re: Image Instance on Android

2011-06-20 Thread gaara
ok could i say i wanna to extract the Byte[] which contains the image's informations Peace, Gaara On Jun 20, 5:17 pm, TreKing treking...@gmail.com wrote: On Mon, Jun 20, 2011 at 6:25 AM, gaara amellal.kamili...@gmail.com wrote: I wanna know what's the result or the structure of the preview on

[android-developers] Re: Image Picker and Cropper

2011-05-21 Thread neuromit
yes it is. I guess I should have specified that. From my app I'd like to let the user pick an image and then crop it but I want to enforce a specific Width x Height ratio and I was wondering if there was something in the SDK to do this. On May 15, 9:24 pm, Nicholas Johnson

Re: [android-developers] Re: Image Picker and Cropper

2011-05-21 Thread Mark Murphy
Picking an image, yes. Cropping an image, no. There is some undocumented cropping activity somewhere (Gallery app?), but it does not work on all devices and, as noted, is not documented. And even that probably will not let you enforce a specific Width x Height ratio. Anything that specific would

[android-developers] Re: Image Picker and Cropper

2011-05-15 Thread neuromit
bump... On May 14, 10:17 am, neuromit stuart.lay...@gmail.com wrote: Is there a way to pick an image from the gallery while also specifying that it should be cropped or resized to certain dimensions? -- You received this message because you are subscribed to the Google Groups Android

[android-developers] Re: Image Picker and Cropper

2011-05-15 Thread Nicholas Johnson
is this a programming question? -- 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] Re: image processing in android

2011-04-24 Thread Streets Of Boston
The classes Bitmap and BitmapFactory. -- 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] Re: Image processing in Android

2011-04-11 Thread Tancho
Yep, checked the whole memory table .. everything seems clear, however I always get a Bitmap exceeds VM Budget and the Bitmap is 64x64 On Apr 11, 1:33 am, lbendlin l...@bendlin.us wrote: http://www.eclipse.org/mat/ -- You received this message because you are subscribed to the Google Groups

[android-developers] Re: Image processing in Android

2011-04-11 Thread Yahel
Bitmap memory management is buggy and completely unintuitive. It does not show in MAT as it is allocated in another place and not counted in the heap. Well it is counted but not easily released or something. My app is all about images(a world of faces), and here is how I get it to work most of

[android-developers] Re: Image processing in Android

2011-04-10 Thread lbendlin
And you already have exhausted all the MAT features? -- 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] Re: Image processing in Android

2011-04-10 Thread lbendlin
http://www.eclipse.org/mat/ -- 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] Re: image upload

2011-01-24 Thread Kumar Bibek
Well, it's a little different, but it also depends on how the server is configured to extract and recreate your data. HttpClient is sufficient for simple file uploads, but getting a multi-part data to work with your server might be a bit tricky. On Jan 20, 10:33 pm, cyberkiwi ldryn...@gmail.com

Re: [android-developers] Re: image background - how to repeat an image rather than strech it

2011-01-14 Thread Richard Leggett
An easy way of making a bitmap repeat is to create an XML file in the drawable folder which looks something like this: ?xml version=1.0 encoding=utf-8? bitmap xmlns:android=http://schemas.android.com/apk/res/android; android:src=@drawable/background android:tileMode=repeat / background

[android-developers] Re: image background - how to repeat an image rather than strech it

2011-01-13 Thread Muhammad Ali
You can create a bitmap in memory, using your own file and draw it in background. It will help you like the repeat image. On Jan 12, 1:57 pm, liordav lior...@gmail.com wrote: Hi, I have an image I want to use as a background to some layout. the problem is the image contains a texture of

[android-developers] Re: image background - how to repeat an image rather than strech it

2011-01-12 Thread Doug
See BitmapDrawable and its related xml configuration documentation if you want to tile an image for the background of a View. On Jan 12, 12:57 am, liordav lior...@gmail.com wrote: Hi, I have an image I want to use as a background to some layout. the problem is the image contains a texture of

[android-developers] Re: Image show problem

2010-12-30 Thread Indicator Veritatis
Well, in a certain important sense, yes, 2.0 is 'obsolete'. But I am afraid people will read this out of context, so I have to object here: any Android developer should still keep 2.0 in mind as a probable target for his applications, even if never the primary target platform. That is, most of us

Re: [android-developers] Re: Image show problem

2010-12-30 Thread TreKing
On Thu, Dec 30, 2010 at 5:56 PM, Indicator Veritatis mej1...@yahoo.comwrote: Well, in a certain important sense, yes, 2.0 is 'obsolete'. Well, it's more like in the official sense. http://developer.android.com/resources/dashboard/platform-versions.html * *Other: 0.1% of devices running

[android-developers] Re: Image doesn't appear from sqlite

2010-12-24 Thread DanH
What's varying? The data won't be read back into the same address, but into a new byte array, and [...@ is just a byte array at a certain address. Dump a few bytes of the arrays (eg, first and last 10) so you can compare their contents. On Dec 22, 4:46 pm, Amiral 4mi...@gmail.com wrote:

[android-developers] Re: Image does't appear from sqlite

2010-12-24 Thread DanH
The addresses vary because they're different objects. You need to dump some of the actual byte arrays to see if they're different. You could even write code to compare input and output. On Dec 21, 6:40 pm, Muhammad Amiral 4mi...@gmail.com wrote: Hi all. I would like to save an image from

Re: [android-developers] Re: Image doesn't appear from sqlite

2010-12-24 Thread Kostya Vasilyev
+0.02 - this code: public void insertlistNews(String city,*byte[] newsImageUrl*, String publishDate, String expiredDate){ [snip] + VALUES (' + city + ',*' + imageUrl + '*,' + publishDate+ ',' + expiredDate');); appends a byte[] to a String. This is the same as appending

[android-developers] Re: image resolutions and scaling

2010-11-24 Thread Vinay
Hai All, Adding on to this thread, since I facing an issue very much related to this. I did go through the Multiple screen support document: http://developer.android.com/guide/practices/screens_support.html I'm using freescale imx51 board connected to a DELL 14 TFT monitor. The default

[android-developers] Re: Image loading from remote problem

2010-11-17 Thread umakantpatil
No one in the form knows the answer ? weired :( On Nov 14, 10:38 pm, umakantpatil umakantpat...@gmail.com wrote: Thanks Kumar, I said it previous that i know i can load it async or in new thread. But after getting the image I don't know how to replace that image back in textview. Can you

[android-developers] Re: Image loading from remote problem

2010-11-17 Thread Kumar Bibek
http://techdroid.kbeanie.com/2010/06/textview-with-html-content.html On Nov 17, 6:17 pm, umakantpatil umakantpat...@gmail.com wrote: No one in the form knows the answer ? weired :( On Nov 14, 10:38 pm, umakantpatil umakantpat...@gmail.com wrote: Thanks Kumar, I said it previous that i

[android-developers] Re: Image loading from remote problem

2010-11-17 Thread umakantpatil
Kumar, I have already checked your pages. Its shows example for drawable which you have on mobile. I want to load remote image. As remote image loading takes long time. UI hangs up till the time. I have also seen that you have written saying that we can pass null and open new thread which

Re: [android-developers] Re: Image loading from remote problem

2010-11-17 Thread Kumar Bibek
Well, I cannot write up the whole code for this, but I am sure it's quite possible to do what you are saying. On Wed, Nov 17, 2010 at 7:31 PM, umakantpatil umakantpat...@gmail.comwrote: Kumar, I have already checked your pages. Its shows example for drawable which you have on mobile. I want

[android-developers] Re: Image loading from remote problem

2010-11-14 Thread umakantpatil
Thanks Kumar, I said it previous that i know i can load it async or in new thread. But after getting the image I don't know how to replace that image back in textview. Can you help me with small piece of code that how can i do it ? On Oct 27, 4:05 pm, Kumar Bibek coomar@gmail.com wrote: Do

[android-developers] Re: Image Zomming using finger touch.

2010-09-24 Thread Spiral123
The Sony Ericsson guys did a tutorial on this: http://blogs.sonyericsson.com/developerworld/2010/05/18/android-one-finger-zoom-tutorial-part-1/ On Sep 23, 3:31 pm, Ajmer Singh ajmersing...@gmail.com wrote: Hi All I need to implement the Image zoom in and zoom out functionality using the

Re: [android-developers] Re: Image Zomming using finger touch.

2010-09-24 Thread Ajmer singh
Hi Thanks for your reply it did help a lot. On Fri, Sep 24, 2010 at 5:53 PM, Spiral123 cumis...@gmail.com wrote: The Sony Ericsson guys did a tutorial on this: http://blogs.sonyericsson.com/developerworld/2010/05/18/android-one-finger-zoom-tutorial-part-1/ On Sep 23, 3:31 pm, Ajmer Singh

[android-developers] Re: Image uploading to the device

2010-09-23 Thread Francisco
I forgot to mention that my application will be the only one using this data so I don't know if a content provider is necesary and i dont know if using a content provider will allow other applications to view my images, i wouldnt like my application images to be viewed from the pictures gallery

  1   2   3   >