Re: [android-developers] Need help on sending events (Motion event, Key event and etc) from a service to system (android 4.0)

2016-11-10 Thread jim mcdonald
Hi, I have a similar question. We are developing an app for Android TV and using a couple different HID devices. One has axis and buttons and works great. The other has only axis and no buttons - and shows up as an HID device with the driver, but not as an input device, so we can't get events.

Re: [android-developers] Need help making android app where I tap screen to skip to another part of video

2016-04-07 Thread TreKing
On Tue, Mar 29, 2016 at 8:43 PM, Jigar Patel wrote: > I am new to developing android apps. I have downloaded the Android Studio > software but I don't know how to use it. I want to make an app where I tap > the screen and it plays a video in full screen. Then when I tap anywhere in > the screen a

Re: [android-developers] Need help in every way!

2016-03-19 Thread Xyler Aston
I figured the RAM might not be sufficient which is crazy that it needs that much RAM but I do IT and am working on finding a PC to get about 6 to 8 GB of RAM or seeing if I have enough lying around to update this one. For the second I don't have a clue where to find the crash logs. When I look

Re: [android-developers] Need help in every way!

2016-03-19 Thread Didier Boka
What is your CPU fqs turn !? On 15:22, Wed, Mar 16, 2016 Xyler Aston wrote: > I figured the RAM might not be sufficient which is crazy that it needs > that much RAM but I do IT and am working on finding a PC to get about 6 to > 8 GB of RAM or seeing if I have enough lying around to update this o

Re: [android-developers] Need help in every way!

2016-03-19 Thread Tushar Lal
Hi Xyler Aston, The answer for your first question is that 4GB RAM is just not enough. I know that on http://developer.android.com/sdk/index.html?gclid=CMzG7fSkxcsCFdIRaAodWoIFtg#Requirements it says that 4GB is enough because that depends upon how much RAM & CUP are being taken up by other proces

Re: [android-developers] NEED HELP!!! How can I get history from Android browser in Android M without READ_HISTORY_BOOKMARKS permission?

2015-12-22 Thread Dielson Sales
Seems like they don't want you to do that anymore : If your app targets Android 6.0 (API level 23) or higher, don't access > bookmarks from the global provider or use the bookmark permissi

Re: [android-developers] Need help for Developing the app using Google Glass SDK.

2014-02-06 Thread TreKing
On Thu, Feb 6, 2014 at 1:24 AM, Seshu wrote: > I am new to Google glass SDK. can any one please help me how to start > developing the app for google glass sdk. Try this: http://lmgtfy.com/?q=google+glass+sdk -

Re: [android-developers] Need help setting table column width

2013-08-18 Thread Salil
Thanks TreKing One more observation is - first column always takes some specific width. I tried by putting a blank string in the fist column and build. Then the first column still takes some specific width and rest of the columns are taking it's required width. I tried different ways - but cou

Re: [android-developers] Need help setting table column width

2013-08-17 Thread TreKing
On Sat, Aug 17, 2013 at 6:19 PM, Salil wrote: > I have attached my project in the first mail. Hence I didn't include the > source files in subsequent mails. > As I mentioned originally, few people are going to download attachments. You need to paste the relevant code into the message itself. >

Re: [android-developers] Need help setting table column width

2013-08-17 Thread TreKing
On Fri, Aug 16, 2013 at 8:05 PM, Salil wrote: > I tried the solutions that you specified. When set the shrinkable to > first column the first column disappeared. ( as in the attachment ). > Please show the full chunk of code you're using to create your table. > This is my first project in An

Re: [android-developers] Need help setting table column width

2013-08-16 Thread TreKing
On Fri, Aug 16, 2013 at 6:00 AM, Salil wrote: > Any luck on this ... > Are you just sitting around waiting for someone to give you an answer? Did you try the things I suggested to you? - TreKing

Re: [android-developers] Need help setting table column width

2013-08-16 Thread Salil
Any luck on this ... this is a kind of a bit urgent for me. Any pointers or help would be appreciated. Thanks sAlil On Wednesday, August 14, 2013 7:51:32 AM UTC+5:30, Salil wrote: > > Thanks TreKing for the reply. > > I referred the online documents for setting layout parameters. But > couldn

Re: [android-developers] Need help setting table column width

2013-08-13 Thread Salil
Thanks TreKing for the reply. I referred the online documents for setting layout parameters. But couldn't do it correctly. I am not getting a logical explanation on why only the first column is not setting the parameter. If I add a blank column before the first column ( id column ) then the fir

Re: [android-developers] Need help setting table column width

2013-08-13 Thread TreKing
On Tue, Aug 13, 2013 at 1:38 AM, Salil wrote: > I think I didn't understand your question correctly. the project file is > attached. > Few people are going to download an attachment off a posting in a public forum on the internet. Even fewer are going to weed through it to debug your problem for

Re: [android-developers] Need help setting table column width

2013-08-12 Thread Salil
TreKing Thanks for responding I think I didn't understand your question correctly. the project file is attached. The following is what I am doing. int result_str_size = 5; for ( int i=0 ; i< result_str_size; i++) { TableRow tr = new

Re: [android-developers] Need help setting table column width

2013-08-12 Thread TreKing
On Mon, Aug 12, 2013 at 9:37 PM, Salil wrote: > I want to get the first column shrink to fit to the text size. And what have you tried? - TreKing

Re: [android-developers] Need help to read .ASPX webpage in app

2012-11-07 Thread TreKing
On Tue, Nov 6, 2012 at 2:48 AM, Ashish Banerjee wrote: > I need to display the content of an ASPX webpage in a apps gui in a > modified form i.e. with my own font style and other stuffs. please help on > how to achieve this. > P.S. i am new to android programming. > 1. http://developer.android.co

Re: [android-developers] Re: [Android-developers]:need help in creating bluetooth file transfer app. urgent

2012-10-25 Thread akash roy
thanx bob i did that already...here is my sample code : sender : File myFile = new File(message.toURI()); nosofpackets=Math.ceil(( (int)myFile.length())/4096); //mChatService.writeda( message.getName(), myFile.length()); for(double i=0; i0){ L

Re: [android-developers] Re: [Android-developers]:need help in creating bluetooth file transfer app. urgent

2012-10-18 Thread bob
Change this: InputStream instream = socket.getInputStream(); to this: *OutputStream outstream = socket.getOutputStream();* Change this: instream.read( buffer); to this: *outstream.write( buffer);* On Thursday, October 11, 2012 12:26:43 AM UTC-5, akash roy wrote: > > i want send a file so

Re: [android-developers] Re: [Android-developers]:need help in creating bluetooth file transfer app. urgent

2012-10-10 Thread akash roy
i want send a file so what changes i have to make.? -- 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+un

[android-developers] Re: [Android-developers]:need help in creating bluetooth file transfer app. urgent

2012-10-10 Thread bob
*Creating a Bluetooth client socket* **private void connectToServerSocket( BluetoothDevice device, UUID uuid) { try{ BluetoothSocket clientSocket = device.createRfcommSocketToServiceRecord( uuid); // Block until server connection accepted. clientSocket.connect(); // Start listening for

[android-developers] Re: [Android-developers]:need help in creating bluetooth file transfer app. urgent

2012-10-09 Thread akash roy
and i m very new on this android developing. -- 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.

Re: [android-developers] NEED HELP FOR INSTALL THE PLUGIN ADT ON ECLIPS

2012-10-04 Thread Mark Murphy
That is the repository for Eclipse Indigo. It is not the repository for the ADT plugin. See: http://developer.android.com/sdk/installing/installing-adt.html On Thu, Oct 4, 2012 at 5:20 AM, AWAKA17 wrote: > I HAVE A PROBKEM WHEN I TRY TO INSTALL THE ADT PLUGIN IN THE ECLIPS I TRIEN > MANY URL'S A

Re: [android-developers] need help showing a download link to my app.

2012-09-09 Thread Mark Murphy
On Fri, Sep 7, 2012 at 12:24 PM, J.Willison wrote: > Published my first app last night (15 hours ago) > I believe my app package is called com.wSLBridalApp Look at your AndroidManifest.xml file to see what your package actually is. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://

Re: [android-developers] need help For App Inventor, Image Zoom + and -

2012-09-09 Thread Mark Murphy
This group is for developing applications with the Android SDK, not via App Inventor. On Sun, Sep 9, 2012 at 6:57 AM, Desi wrote: > hello freind's > > i need some help > > i am working on a app. > > there is an image ( 4000 pix X 4000 ) > > can any one help me for zoom contoles > > > thnxxx

Re: [android-developers] need help

2012-09-04 Thread Justin Anderson
http://android-developers.blogspot.com/2009/02/android-layout-tricks-2-reusing-layouts.html Thanks, Justin Anderson MagouyaWare Developer http://sites.google.com/site/magouyaware On Tue, Sep 4, 2012 at 12:06 PM, thinkee365 wrote: > why you should use include and merge? > you can replace using

Re: [android-developers] need help

2012-09-04 Thread thinkee365
why you should use include and merge? you can replace using vim:) On Tue, Sep 04, 2012 at 11:08:58PM +0530, Madhuri Cherukuri wrote: > Hi > > Can any one help me how to replace a two xml's by using include and merg > tag or is there any other way to replace. > Thanking you.. > > -- >

Re: [android-developers] need help

2012-09-04 Thread vinay kumar
can you be more specific, what you really want to implement. On Tue, Sep 4, 2012 at 11:08 PM, Madhuri Cherukuri wrote: > Hi > > Can any one help me how to replace a two xml's by using include and merg > tag or is there any other way to replace. > Thanking you.. > > -- > You received th

Re: [android-developers] Need Help ....

2012-09-02 Thread Fred Niggle
you need to google for button.settext... On 31 August 2012 12:37, Madhuri Cherukuri wrote: > Hello folks, > > I need a help me from you guys. > > ex: < Game type> > > here "<" and ">" are two buttons and "game type" is text view,when i click > on "<" button the text should be replace by another

Re: [android-developers] Need help on sending events (Motion event, Key event and etc) from a service to system (android 4.0)

2012-08-06 Thread Prabudas
Dianne, thanks for your reply. Can I have a touch screen as an external HID (without add / modify any driver) in the same way like mouse and keyboard? Thanks. Regards, Prabudas S. On Tuesday, 7 August 2012 03:41:29 UTC+5:30, Dianne Hackborn wrote: > > Currently the only way, outside of test

Re: [android-developers] Need help on sending events (Motion event, Key event and etc) from a service to system (android 4.0)

2012-08-06 Thread Dianne Hackborn
Currently the only way, outside of test environments, to deliver input events to the platform is throw a kernel input device. So your USB device must report itself as a HID device (a keyboard, trackpad, mouse, or game controller) which the kernel understands how to interact with and will generate

Re: [android-developers] Need help regarding android app development?

2012-07-26 Thread Justin Anderson
http://lmgtfy.com/?q=android+database+tutorial Thanks, Justin Anderson MagouyaWare Developer http://sites.google.com/site/magouyaware On Mon, Jul 23, 2012 at 9:08 AM, yuvan kiran wrote: > i have a plan of building an android app which takes the serial > number..and displays the result of that

Re: [android-developers] Need Help Problem about socket communication between android smartphone and PC through WIFI

2012-06-18 Thread Robert Greenwalt
If you take a bugreport the route table should be listed and we would know more. On Fri, Jun 15, 2012 at 4:56 AM, neo wrote: > Hello everyone, > > I have developed an application about socket communication between > smartphone (as Client) and pc(as Server). und tested this application on > Andro

Re: [android-developers] Need Help :android passing lat/long as parameter to web service

2012-06-14 Thread TreKing
On Thu, Jun 7, 2012 at 6:01 AM, Olfa Dhaouadi wrote: > i want to send touched markers properties(long/lat) as parameter to a web > service .. > how can i do it?? > 1-Write a web service that accepts lat and long parameters. The details of this are off-topic for this list. 2-Write code in your ap

Re: [android-developers] Need help for thread cancelable queue pattern.

2012-05-14 Thread Fabien R
On 11/05/12 13:10, Tolriq wrote: > And a little supplemental question that is linked to this, the sync process > can be for example a function that call 3 functions that each takes a lot's > of time, in each functions I can check for thread.interrupted to stop it, > but from documentation it cle

Re: [android-developers] need help working with very large (photo) bitmaps

2012-04-22 Thread Jim Graham
(re-sending ... when I sent this before, the list was down due to having exceeded its maximum number of recipients ... something I've never heard of any e-mail list doing...and I've been around Listservs and other list varieties for decades) On Wed, Apr 18, 2012 at 03:20:31PM -0700, Massycat w

Re: [android-developers] need help working with very large (photo) bitmaps

2012-04-22 Thread Massycat
> > Perhaps there's some method of processing the photo and filter bitmaps in > chunks in a way I'm not aware of? Something that doesn't eventually end > up right back at an eventual out of memory error? Or some other method? > Have a look at BitmapRegionDecoder

Re: [android-developers] need help working with very large (photo) bitmaps

2012-04-20 Thread Jim Graham
On Fri, Apr 20, 2012 at 06:27:18AM -0700, Streets Of Boston wrote: > Note that createScaledBitmap may return the same bitmap as the input... > when the input parameters *width *and *height *are the same as the > width/height of your input bitmap: > > Change the code as follows (bold part is the

Re: [android-developers] need help working with very large (photo) bitmaps

2012-04-20 Thread Streets Of Boston
Note that createScaledBitmap may return the same bitmap as the input... when the input parameters *width *and *height *are the same as the width/height of your input bitmap: Change the code as follows (bold part is the changed part): Bitmap bmp1 = Bitmap.createScaledBitmap(src, width, height, f

Re: [android-developers] need help working with very large (photo) bitmaps

2012-04-19 Thread Jim Graham
On Thu, Apr 19, 2012 at 03:22:39PM -0700, Streets Of Boston wrote: > " *But there is one big question...why does recycling the bitmaps after > their last use still result in a force close, saying that I tried to use > them AFTER they were recycled? *" > > We don't have enough of your code. But s

Re: [android-developers] need help working with very large (photo) bitmaps

2012-04-19 Thread Streets Of Boston
" *But there is one big question...why does recycling the bitmaps after their last use still result in a force close, saying that I tried to use them AFTER they were recycled? *" We don't have enough of your code. But suppose you have this code executed: Bitmap bitmap1 = new BitmapFactory.deco

Re: [android-developers] need help working with very large (photo) bitmaps

2012-04-19 Thread JackN
it ok, youll get it. you just have some conceptual errors. On Wednesday, April 18, 2012 3:20:56 PM UTC-7, Spooky wrote: > On Wed, Apr 18, 2012 at 03:02:41PM -0700, JackN wrote: > > Depends on your depth. For 3 bytes per color (24 bit color), a 2592x1944 > > is 15 MEGABYTES. > > Again ... READ

Re: [android-developers] need help working with very large (photo) bitmaps

2012-04-19 Thread Jim Graham
On Thu, Apr 19, 2012 at 06:25:12AM -0700, Streets Of Boston wrote: > First, ignore this sentence below from my previous answer entirely: > "Save the byte[] data from the camera into file directly (this is your > JPG file)." > (It was a left-over chunk of my initial answer) Ah, that explains it.

Re: [android-developers] need help working with very large (photo) bitmaps

2012-04-19 Thread Streets Of Boston
First, ignore this sentence below from my previous answer entirely: "Save the byte[] data from the camera into file directly (this is your JPG file)." (It was a left-over chunk of my initial answer) The 'byte[] data' still takes up memory, because the caller (the Android SDK code that calls the

Re: [android-developers] need help working with very large (photo) bitmaps

2012-04-18 Thread Jim Graham
On Wed, Apr 18, 2012 at 03:59:23PM -0700, Streets Of Boston wrote: > Dealing with ARGB_ full-sized images may just not be possible for > certain devices (e.g. 5MPixel images taking 20Mbyte of memory, not leaving > much room for anything else). > Unless you can decode the byte[] data from the

Re: [android-developers] need help working with very large (photo) bitmaps

2012-04-18 Thread Streets Of Boston
Dealing with ARGB_ full-sized images may just not be possible for certain devices (e.g. 5MPixel images taking 20Mbyte of memory, not leaving much room for anything else). Unless you can decode the byte[] data from the Camera yourself... this would mean writing your own JPG decoder that woul

Re: [android-developers] need help working with very large (photo) bitmaps

2012-04-18 Thread Streets Of Boston
Dealing with ARGB_ full-sized images may just not be possible for certain devices (e.g. 5MPixel images taking 20Mbyte of memory, not leaving much room for anything else). Unless you can decode the byte[] data from the Camera yourself... this would mean writing your own JPG decoder that would

RE: [android-developers] need help working with very large (photo) bitmaps

2012-04-18 Thread Tommy Hartz
han X. -Original Message- From: android-developers@googlegroups.com [mailto:android-developers@googlegroups.com] On Behalf Of Jim Graham Sent: Wednesday, April 18, 2012 6:41 PM To: android-developers@googlegroups.com Subject: Re: [android-developers] need help working with very large (

Re: [android-developers] need help working with very large (photo) bitmaps

2012-04-18 Thread Jim Graham
On Wed, Apr 18, 2012 at 03:28:11PM -0700, Streets Of Boston wrote: > The size of the JPG/PNG file has almost nothing to do with the size of the > corresponding image in memory. Hopefully those who HAVE been saying that will read this. > An RGB_565 takes 2 bytes per pixel (5+6+5=16bits=2bytes).

Re: [android-developers] need help working with very large (photo) bitmaps

2012-04-18 Thread Kostya Vasilyev
On 04/19/2012 02:29 AM, Jim Graham wrote: [1] trying to find out if there's a way to process photo and filter bitmaps in chunks, and possibly save them in chunks, as well, or perhaps use some other method, to allow users to keep their maximum resolution, at 24-bit color, not lousy

Re: [android-developers] need help working with very large (photo) bitmaps

2012-04-18 Thread Jim Graham
On Thu, Apr 19, 2012 at 02:19:54AM +0400, Kostya Vasilyev wrote: > I'm not saying you dreamed those up, sorry, no offence meant. > > But since we seem to be discussing memory usage, not disk usage, the > compressed size is irrelevant. Thank you. My point exactly. > And 5 megapixels at RGB_

Re: [android-developers] need help working with very large (photo) bitmaps

2012-04-18 Thread Streets Of Boston
The size of the JPG/PNG file has almost nothing to do with the size of the corresponding image in memory. An RGB_565 takes 2 bytes per pixel (5+6+5=16bits=2bytes). An ARGB_ takes 4 bytes per pixel. This means a 5MPixel image will take 5M*2 = 10MByte in RAM when using RGB_565 or 5M*4=20MByte

Re: [android-developers] need help working with very large (photo) bitmaps

2012-04-18 Thread Jim Graham
On Wed, Apr 18, 2012 at 03:02:41PM -0700, JackN wrote: > Depends on your depth. For 3 bytes per color (24 bit color), a 2592x1944 > is 15 MEGABYTES. Again ... READ THE FOLLOWING (with corrected units): > > On Wed, Apr 18, 2012 at 12:50:41PM -0700, JackN wrote: > > > > > 350 kB jpg? in memory,

Re: [android-developers] need help working with very large (photo) bitmaps

2012-04-18 Thread Kostya Vasilyev
I'm not saying you dreamed those up, sorry, no offence meant. But since we seem to be discussing memory usage, not disk usage, the compressed size is irrelevant. And 5 megapixels at RGB_ is 32 bits per pixel or 20 megabytes in RAM, if stored as an uncompressed pixel array. -- K On 04/1

Re: [android-developers] need help working with very large (photo) bitmaps

2012-04-18 Thread Jim Graham
On Thu, Apr 19, 2012 at 01:55:18AM +0400, Kostya Vasilyev wrote: > On 04/19/2012 12:39 AM, Jim Graham wrote: > >I doubt that. I'm working with full-sized and near-full-sized images > >(3 MP//2048x1536 or 5 MP//2592x1944) and those are around 750 kB and 1.1 > >MB, respectively (give or take a few h

Re: [android-developers] need help working with very large (photo) bitmaps

2012-04-18 Thread JackN
Depends on your depth. For 3 bytes per color (24 bit color), a 2592x1944 is 15 MEGABYTES. jpeg aint rle On Wednesday, April 18, 2012 1:39:39 PM UTC-7, Spooky wrote: > On Wed, Apr 18, 2012 at 12:50:41PM -0700, JackN wrote: > > > 350 kB jpg? in memory, that could be huge. perhaps even 20 o

Re: [android-developers] need help working with very large (photo) bitmaps

2012-04-18 Thread Kostya Vasilyev
On 04/19/2012 12:39 AM, Jim Graham wrote: I doubt that. I'm working with full-sized and near-full-sized images (3 MP//2048x1536 or 5 MP//2592x1944) and those are around 750 kB and 1.1 MB, respectively (give or take a few hundred kB). I can't remember which I was working with at the time, but wh

Re: [android-developers] need help working with very large (photo) bitmaps

2012-04-18 Thread Jim Graham
On Wed, Apr 18, 2012 at 12:50:41PM -0700, JackN wrote: > 350 kB jpg? in memory, that could be huge. perhaps even 20 or more MB [corrected units in the above ... I've never actually SEEN anything that can store data in millibits, nor have I seen file sizes meansured in bits] I doubt that. I'm wo

Re: [android-developers] need help working with very large (photo) bitmaps

2012-04-18 Thread JackN
350 kb jpg? in memory, that could be huge. perhaps even 20 or more mbs On Wednesday, April 18, 2012 3:29:46 AM UTC-7, ANKUR1486 wrote: > > Even i am loading 350 kb image its giving out of memory . > I have image in drawable folder > and setting the image in java code .:( > > > > On Tue, Apr 17, 2

Re: [android-developers] need help working with very large (photo) bitmaps

2012-04-18 Thread ANKUR GOEL
Even i am loading 350 kb image its giving out of memory . I have image in drawable folder and setting the image in java code .:( On Tue, Apr 17, 2012 at 5:08 PM, Jim Graham wrote: > The question about blending methods resolved itself when I switched to > making the bitmaps for filters in the a

Re: [android-developers] Need help from the Android team...

2012-03-25 Thread Mark Murphy
On Fri, Mar 23, 2012 at 5:10 PM, Grady Duncan wrote: > I have done many hours of research and testing trying to find the best way > to start making android devices controllable by parents and users. I > started with the browser and decided to go with changing the DNS of the > mobile device. I wrot

Re: [android-developers] Need help fine tuning gmail like ListView.

2012-03-23 Thread Nikolay Elenkov
2012/3/23 Kostya Vasilyev > > I've run into the same task with my current app. Especially true if you consider the different checkbox sizes on various platform versions. > > What I ended up with is a custom layout class at the top level of my item layout that does its own event tracking. > > Ther

Re: [android-developers] Need help fine tuning gmail like ListView.

2012-03-23 Thread Kostya Vasilyev
I've run into the same task with my current app. Especially true if you consider the different checkbox sizes on various platform versions. What I ended up with is a custom layout class at the top level of my item layout that does its own event tracking. 23.03.2012 11:05 пользователь "Steve Garon"

Re: [android-developers] Need help on reading the html source of a page

2012-03-16 Thread chowdary nani
Hi, as i dont know any thing about php script and java script. in my html code the first page is redirecting to second page i need to read the second page source code in i tried using the code in the link using that i am reading the first page source i amno getting the second page source code so th

Re: [android-developers] Need help on reading the html source of a page

2012-03-15 Thread Justin Anderson
> > Hi Mark Murphy, > will you please help me in reading html source code > Ummm... he already helped you. Follow the link he gave you and try to implement some of the stuff that is recommended in that post. Thanks, Justin Anderson MagouyaWare Developer http://sites.google.com/site/magouyaware

Re: [android-developers] Need help on reading the html source of a page

2012-03-15 Thread chowdary nani
Hi Mark Murphy, will you please help me in reading html source code please its important for me for this url I have edited my code in the following way but i am getting same problem will you please check it once my code is as follows public class InstagramAlbumsActivity extends Activity { S

Re: [android-developers] Need help on reading the html source of a page

2012-03-15 Thread Mark Murphy
You are not "reading html source code of a page after page loading". You are downloading *a second copy of the page*. There is no direct means of getting at the HTML presently displayed in a WebView. Here is a StackOverflow question with some answers demonstrating some workarounds: http://stackov

Re: [android-developers] need help on adding custom view to XML file

2012-03-08 Thread Bin Yang
To debug, find the null object . 在 2012年3月6日 下午2:09,chowdary nani 写道: > Typeface.create("arial", Typeface.NORMAL); -- 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 T

Re: [android-developers] need help on adding custom view to XML file

2012-03-06 Thread Justin Anderson
Are you SURE that the CustomView class is in this package: net.pocketmagic.customangletext? Thanks, Justin Anderson MagouyaWare Developer http://sites.google.com/site/magouyaware On Tue, Mar 6, 2012 at 8:33 AM, TreKing wrote: > On Tue, Mar 6, 2012 at 12:09 AM, chowdary nani > wrote: > >> I am

Re: [android-developers] need help on adding custom view to XML file

2012-03-06 Thread TreKing
On Tue, Mar 6, 2012 at 12:09 AM, chowdary nani wrote: > I am working on adding custom view to xml file > following is my code when i am executing my code i am getting null > pointer exception > Debug your app, then fix whatever is causing your exception. At the very least, post a stacktrace so w

Re: [android-developers] Need help testing an app!

2012-02-14 Thread Daniel Drozdzewski
There is also Device Anywhere: http://www.keynotedeviceanywhere.com/index.aspx On 14 February 2012 13:20, Mark Phillips wrote: > Try these guys - http://duarlander.ning.com/. I have never used them, but it > looks like you can post a request for testers on their wall and may not have > to pa

Re: [android-developers] Need help testing an app!

2012-02-14 Thread Mark Phillips
Try these guys - http://duarlander.ning.com/. I have never used them, but it looks like you can post a request for testers on their wall and may not have to pay. Mark On Tue, Feb 14, 2012 at 12:23 AM, Manmade wrote: > I wonder if anybody please could help me test an app that I made? > I have ma

Re: [android-developers] need help in compiling source code

2012-01-11 Thread TreKing
On Wed, Jan 11, 2012 at 12:34 AM, lambu0594 wrote: > while compiling ice cream sandwich for vision Find a list having to do with compiling the source - this one is for SDK development. - TreKing

Re: [android-developers] Need Help

2012-01-11 Thread Robinns
What have you done so far? and where did you find some sort of problems. Untill you show something to us on what you have done? How would anyone here know what you are upto? On Wed, Jan 11, 2012 at 5:39 PM, Seshu wrote: > Hi All, > I am developing a small application which requires list

Re: [android-developers] need help in coding for animation

2012-01-10 Thread TreKing
On Tue, Jan 10, 2012 at 3:31 AM, syam sanker wrote: > i require an image to move from left to right.can anyone provide code for > this. > No. Can you read the documentation, try something, and ask a specific question if you need help?

Re: [android-developers] need help in coding for flickr integration

2012-01-09 Thread TreKing
On Mon, Jan 9, 2012 at 3:53 AM, chowdary nani wrote: > Can any one please help me in coding Flickr integration in android Read your question back to yourself. Then ask yourself "is anyone going to respond to this?". Answer yourself "No". Then read this: http://www.catb.org/~esr/faqs/smart-questi

Re: [android-developers] need help in twitter integration

2012-01-09 Thread dEEPESH PPM
Hi Naveen, this may due to the mismatching of time stamp. As twitter OAuth request token service is related with current time you have to check your system clock . Regards Deepesh On Mon, Jan 9, 2012 at 4:19 PM, chowdary nani wrote: > Hi dEEPESH PPM , > Thanks for help, > Thanks for replay, >

Re: [android-developers] need help in twitter integration

2012-01-09 Thread dEEPESH PPM
Hi Naveen *,* * * *Please check your device clock and adjust with current time. I had the same issue in my app. I am solving this issue bu correcting the android device time.You can solve this issue* * * *Regards* * * *Deepesh C* On Mon, Jan 9, 2012 at 3:45 PM, chowdary nani wrot

Re: [android-developers] Need help in twitter integration

2012-01-07 Thread chowdary nani
*Hi, Mukesh Kumar*, Thanks for replay , Thanks for checking mail,thanks for replay. but i am still getting the same error as OAuthRequestTokenTask(1695): Error during OAUth retrieve request token please help me in solving this error in twitter integration. Thanks Swathi. On Fri, Jan 6, 2

Re: [android-developers] Need help in twitter integration

2012-01-05 Thread Mukesh Srivastav
Naveen, The solution is very simple, you create a Twitterutil class and use it for sending Tweets and also getting the Tweets. Below is my example to do it. public class TwitterUtils { public static boolean isAuthenticated(SharedPreferences prefs) { String token = prefs.getString(OAuth.OAUTH_

Re: [android-developers] need help on text rotation

2012-01-05 Thread TreKing
On Wed, Jan 4, 2012 at 2:27 AM, chowdary nani wrote: > my problem is to change the angle of text on key code event the text > should > be changed either counter clock wise or anti clock wise. > i need help on changing the angle of text dynamically > You're just repeating your original post which

Re: [android-developers] need help on text rotation

2012-01-04 Thread chowdary nani
hi jim, Thanks for replay my problem is to change the angle of text on key code event the text should be changed either counter clock wise or anti clock wise. i need help on changing the angle of text dynamically in android will please help me any one On Wed, Jan 4, 2012 at 11:35 AM, Jim Graham w

Re: [android-developers] need help on text rotation

2012-01-03 Thread Jim Graham
On Wed, Jan 04, 2012 at 11:02:31AM +0530, chowdary nani wrote: > I need help on rotating the text to certain angle on key code events in > android will please help me anyone. We can't right now, because you haven't told us what the problem is. What have you done so far? What errors are you getti

Re: [android-developers] need help on rotating text

2012-01-03 Thread chowdary nani
Hi, Thank you Chandara shekar your link has helped me a lot Thanks for your help, Thanks for replay Thanks Naveen. On Tue, Jan 3, 2012 at 12:29 PM, Chandra Sekhar wrote: > > > On Tue, Jan 3, 2012 at 9:43 AM, chowdary nani wrote: > >> Hi All, >> I need help on rotating the text vertically on to

Re: [android-developers] need help on rotating text

2012-01-02 Thread Chandra Sekhar
On Tue, Jan 3, 2012 at 9:43 AM, chowdary nani wrote: > Hi All, > I need help on rotating the text vertically on touch events in android > will please help me any one. > > > > > > > Thanks > Naveen > > -- > You received this message because you are subscribed to the Google > Groups "Android Develop

Re: [android-developers] Need help on referncing response from WCF REST service.

2012-01-02 Thread Mukesh Srivastav
Design issue Mate :(, Let's say you are receiving some around 20 records and you might wanted to bind in the Listview, you need to do the following things. 1. Write a class which actually parses your data and bind it to the Model Class. 2. Create a Class with setters and getters of the fil

Re: [android-developers] Need Help

2011-12-28 Thread vandana toshniwal
I have already given u the piece of code what else do u want? On 28 December 2011 13:10, chowdary nani wrote: > Hi, > Thanks for replay > will you please help me by brief example > > On Wed, Dec 28, 2011 at 12:47 PM, vandana toshniwal < > vandanatoshni...@gmail.com> wrote: > >> >> hi >> >>

Re: [android-developers] Need Help

2011-12-27 Thread chowdary nani
Hi, Thanks for replay will you please help me by brief example On Wed, Dec 28, 2011 at 12:47 PM, vandana toshniwal < vandanatoshni...@gmail.com> wrote: > > hi > > create a custom textview and override the onDraw method. > the code is as follows... > > > *protected* *void* onDraw(Canvas canvas) {

Re: [android-developers] Need Help

2011-12-27 Thread vandana toshniwal
hi create a custom textview and override the onDraw method. the code is as follows... *protected* *void* onDraw(Canvas canvas) { //This saves off the matrix that the canvas applies to draws, so it can be restored later. canvas.save(); //We need to rotate around the center of our text //Other

Re: [android-developers] Need Help

2011-12-27 Thread chowdary nani
Hi All, I need help on rotating the text in textview for 90 degrees please help me from anyone Thank you Naveeen -- 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 uns

Re: [android-developers] Need help on making mobile catalog

2011-12-20 Thread TreKing
On Tue, Dec 20, 2011 at 2:50 AM, David Setiawan wrote: > Do you have any example or tutorial about how to make a mobile catalog > like that? I don't and it'll probably be difficult to find an example of something that specific. Design your app, figure out how you want it to work, then break it

Re: [android-developers] Need help on making mobile catalog

2011-12-20 Thread David Setiawan
I'm actually looking for an example or maybe step by step tutorial on how to make a mobile product catalog for android device. If you don"t know what i mean with mobile product catalog, maybe you can look at samsung mobile catalog from android market. And that's the one that i want to make or at le

Re: [android-developers] Need Help

2011-12-19 Thread HideCheck
        Matrix matrix = new Matrix();        matrix.setScale(-1, 1);     Bitmap reverse = Bitmap.createBitmap(bitmap, 0, 0, bitmap.getWidth(), bitmap.getHeight(), matrix, true); 2011/12/20 chowdary nani : > Hi All, > > Please send me sample code  for displaying the mirror of image in android > ap

Re: [android-developers] Need help on making mobile catalog

2011-12-18 Thread TreKing
On Fri, Dec 16, 2011 at 2:02 AM, Squallionz wrote: > i got an order from my boss to make a mobile catalog for our company > product for android devices. Does anyone can help me or maybe have an > example that i can try and learn from? > An example for what? What are you looking for that you can't

Re: [android-developers] Need help to customize & optimize ListView item rendering .

2011-12-17 Thread Harri Smått
Ah, Pardon me, quite obviously View is not an option but has to be ViewContainer, choose layout as a base class that suits your needs the best. -- H On Dec 17, 2011, at 8:17 PM, Harri Smått wrote: > Hi, > > In such case I would start with a custom View class as list item. This way > you can

Re: [android-developers] Need help to customize & optimize ListView item rendering .

2011-12-17 Thread Harri Smått
Hi, In such case I would start with a custom View class as list item. This way you can isolate expanding procedure within this one class and have more direct access to it's contents. For example you can introduce a method getUsername() instead of calling findViewById(R.id.username) every time y

Re: [android-developers] Need Help -Custom Image

2011-12-15 Thread Kiran Kumar Kendole
Tnx It worked for me. Thanks, KIRANKUMARKENDOLE On Thu, Dec 15, 2011 at 10:03 AM, TreKing wrote: > On Thu, Dec 15, 2011 at 7:56 AM, Kiran Kumar Kendole < > k.kirankumar1...@gmail.com> wrote: > >> I just want to change the image when the user click/touch on it .So that >> user feel like the but

Re: [android-developers] Need Help -Custom Image

2011-12-15 Thread TreKing
On Thu, Dec 15, 2011 at 7:56 AM, Kiran Kumar Kendole < k.kirankumar1...@gmail.com> wrote: > I just want to change the image when the user click/touch on it .So that > user feel like the button was clicked really. I want to show variation in > the image before click/touching and after. http://dev

Re: [android-developers] Need Help -Custom Image

2011-12-15 Thread Kiran Kumar Kendole
Hey TreKing , I just want to change the image when the user click/touch on it .So that user feel like the button was clicked really. I want to show variation in the image before click/touching and after. Thanks, KIRANKUMARKENDOLE On Thu, Dec 15, 2011 at 8:49 AM, TreKing wrote: > On Thu, Dec 1

Re: [android-developers] Need Help -Custom Image

2011-12-15 Thread TreKing
On Thu, Dec 15, 2011 at 7:32 AM, Kiran Kumar Kendole < k.kirankumar1...@gmail.com> wrote: > appreciate any suggestions. For what? You didn't exactly state what your issue is. - TreKing

  1   2   3   >