[android-developers] Re: BitmapFactory 's decodeByteArray and decodeStream returns null

2011-09-15 Thread Zsolt Vasvari
Where is it documented as to the format of your data stream? From what I can gather from the docs is that if the data cannot be decoded, you get NULL back. On Sep 16, 2:02 pm, Siji T G wrote: >  Hello Oscar, > > Thanks for the reply. > But I already  tried this approach. > > ByteArrayInputStre

[android-developers] Android native browser can't access https sites

2011-09-15 Thread perumal316
Hi, I have noticed that for certain https websites, the native browser could not load them and just displays a blank white page. However, this is not an issue with Firefox Android application. Is it a known issue? Is there any workarounds? I tried in an Android 2.3.3 device. Thanks In Advance,

[android-developers] phone gap

2011-09-15 Thread mohana priya
what is the difference between android phone gap and blackberry phonegap -- 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] drawing text or gesture on image saved on sd card

2011-09-15 Thread Honest
Hello, Till now in my application i am scaling image and drawing it on screen according to screen size. after that user can draw text or any thing on it using his finger. and after that i convert view to Bitmap and i resize that bitmap and make it to the same height and width as real image. now th

Re: [android-developers] Re: drawing too much power

2011-09-15 Thread Yohanes Khosiawan
maybe you should buy an adapter then.. On Fri, Sep 16, 2011 at 2:58 PM, bob wrote: > It can't be plugged into the wall and computer at the same time. > > It recharges thru the micro-USB port. > > > > On Sep 15, 11:57 pm, Christopher Van Kirk > wrote: > > Plug it into the wall? > > > > On 9/16/2

[android-developers] Re: SQLite and JSON or Java object serialization

2011-09-15 Thread ko5tik
I wrote and published small library for JSON data binding: https://github.com/ko5tik/jsonserializer I uses GSON pull parsing , based on convetions, has small footprint and is good to marshal / unmarshal simple java beans to files. Release 0.6 is available from maven central. regartds, On S

[android-developers] Re: How is RockPlayer doing hardware decoding?

2011-09-15 Thread Doug
If authentication over rtsp is a documented standard, then you could file a bug with details and hope that it gets resolved in a future version. Doug On Sep 15, 12:17 am, "B.Arunkumar" wrote: > Hi, > >      Regarding your question, MediaPlayer supports RTSP streaming but > does not take all RTSP

Re: [android-developers] BitmapFactory 's decodeByteArray and decodeStream returns null

2011-09-15 Thread Siji T G
Hello Oscar, Thanks for the reply. But I already tried this approach. ByteArrayInputStream imageStream = new ByteArrayInputStream(data); Bitmap theImage = BitmapFactory.decodeStream(imageStream); *theImage* returned by *decodeStream* is null. Regards Siji -- You received this mes

[android-developers] AutoCompleteTextView data binding problem

2011-09-15 Thread Monzurul Islam Shamim
Hi, I have following two arrays and I want to bind them to a AutoCompleteTextView. My problem is when type on the textview it filters the nameArr and I lost the correct index in the idArr. How do I bind idArr to the view? String idArr[] = new String[]{"1","2","3"}; String nameArr[] = new String[

[android-developers] Re: drawing too much power

2011-09-15 Thread bob
It can't be plugged into the wall and computer at the same time. It recharges thru the micro-USB port. On Sep 15, 11:57 pm, Christopher Van Kirk wrote: > Plug it into the wall? > > On 9/16/2011 11:26 AM, bob wrote: > > > > > > > > > I bought a Vizio Tablet.  When I plug it into my PC, the PC s

Re: [android-developers] BitmapFactory 's decodeByteArray and decodeStream returns null

2011-09-15 Thread Óscar de la Mata
HI Siji. Have you tried this aproach? public void convert(){ ByteArrayInputStream imageStream = new ByteArrayInputStream(data); Bitmap theImage = BitmapFactory.decodeStream(imageStream); try { File file = FotoFolder.getFotoFile("fileName.png");

[android-developers] Intent to install packages from market

2011-09-15 Thread ajay
Hi I am trying to develop an application which will install a free application from market. The input from the user would be package name. eg: "com.outfit7.talkingtom" I am able to open the market application using below code: Intent intent = new Intent(Intent.ACTION_VIE

Re: [android-developers] Re: Android's Virtual Device (AVD) doesn't start

2011-09-15 Thread Logesh rajendren
Make sure that your sdk folder path dont have spaces. if there is any spaces , replace them by underscore of hypens. On Thu, Sep 15, 2011 at 1:57 PM, Peter wrote: > I had a number of problems starting my VM as well. Not sure what OS > you're running on, but my primary dev machine is Windows Vist

[android-developers] HOW TO USE ROCK PLAYER IN OUR OWN application.

2011-09-15 Thread NAVI NEW
HOW TO USE ROCK PLAYER IN OUR OWN application. -- 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+unsubsc

Re: [android-developers] drawing too much power

2011-09-15 Thread Christopher Van Kirk
Plug it into the wall? On 9/16/2011 11:26 AM, bob wrote: I bought a Vizio Tablet. When I plug it into my PC, the PC says it's disabling the USB connection because it was drawing too much power. Any ideas how to get by this? -- You received this message because you are subscribed to the Googl

Re: [android-developers] Re: Android development Online course at UCI

2011-09-15 Thread jayaram p
Personally feel that http://developer.android.com is the best source of information to learn or to teach android. Spend some time in going through the site and also you can learn the examples listed @ http://developer.android.com/resources/browser.html?tag=sample On Thu, Sep 15, 2011 at 7:13 PM,

Re: [android-developers] Re: Bluetooth printer skipping lines of print

2011-09-15 Thread Sebastin Basimalla
I couldnt get u?? can u elaborate!! On Fri, Sep 16, 2011 at 9:56 AM, Zsolt Vasvari wrote: > Doesn't ensureAllPrintedViaBluetooth() work? > > On Sep 16, 12:03 pm, Sebs wrote: > > We are pairing a blue tooth printer with an android phone and trying > > to print a file. The printer has 16K memory.

[android-developers] Re: How to create 'Real Transparent activity' OR 'Real Modeless'??

2011-09-15 Thread Build account
Oh, seems a good idea!? any one else for this?? On 9월15일, 오후10시42분, TreKing wrote: > On Thu, Sep 15, 2011 at 8:21 AM, Build account wrote: > > > I mean that if there is the popup, but user touch beside popup where > > the background activiti's area, > > wanna get disappear the popup which I crea

Re: [android-developers] Re: Out Of Memory Error with Images loaded through XML

2011-09-15 Thread Sorab Pithawala
Hi there, @Ralph - I do it my way because it seems to me that multiple calls to getResources() is generally considered to be a bad thing (read it online), and like Michael said I want to make sure my next Image loads without fail. That and the fact that in an actual app, you would indeed have quite

[android-developers] Running ui thread from another thread

2011-09-15 Thread Logesh rajendren
Is there any way to run a UI thread from another class ? -- 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-develop

[android-developers] Re: Bluetooth printer skipping lines of print

2011-09-15 Thread Zsolt Vasvari
Doesn't ensureAllPrintedViaBluetooth() work? On Sep 16, 12:03 pm, Sebs wrote: > We are pairing a blue tooth printer with an android phone and trying > to print a file. The printer has 16K memory. It is ignoring a few > lines of the file randomly. Is there a method to ensure that the > printer alw

[android-developers] Bluetooth printer skipping lines of print

2011-09-15 Thread Sebs
We are pairing a blue tooth printer with an android phone and trying to print a file. The printer has 16K memory. It is ignoring a few lines of the file randomly. Is there a method to ensure that the printer always prints the complete content of the file. -- You received this message because you

[android-developers] accessing media player declared in a service from my main activity

2011-09-15 Thread ruchira
I am a newbie to android development.I am trying to put background music for my app.I used intent service wherein I declared media player and from my main activity the service was called by explicit intent. Though the media player plays the music file but I am stuck with following issues:- 1)I w

[android-developers] drawing too much power

2011-09-15 Thread bob
I bought a Vizio Tablet. When I plug it into my PC, the PC says it's disabling the USB connection because it was drawing too much power. Any ideas how to get by this? -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, s

[android-developers] Re: After Signing Pressing App Icon Restarts App Every Time

2011-09-15 Thread GregAZ
It's not just my phone, it's happening for others as well. And yes, I put the signed version on a 2.2 emulator and it had the same problem. On Sep 15, 10:06 pm, Zsolt Vasvari wrote: > I assume you narrowed the problem to zipalign by trying the "release" > apk on the emulator, right? > > On Sep 1

[android-developers] Re: After Signing Pressing App Icon Restarts App Every Time

2011-09-15 Thread Zsolt Vasvari
I assume you narrowed the problem to zipalign by trying the "release" apk on the emulator, right? On Sep 16, 10:40 am, GregAZ wrote: > It happens if I sign it and not zip align it.  Maybe my jarsigner was > updated?  I guess I'll see what I have and if there's a newer one. > > On Sep 15, 9:10 p

[android-developers] Re: Loading many sound clips leads to long app start times

2011-09-15 Thread Zsolt Vasvari
Sounds like a sound (no pun intended), scalable solutions -- pun intended. On Sep 16, 10:18 am, fog wrote: > Ok, I fixed my problem, so I thought I would post what I did here for > historical purposes. > > Rather than load up all sound clips at once, I divided my loadClips() > into groups of 10 c

Re: [android-developers] how to decompile APK file

2011-09-15 Thread Kristopher Micinski
There's a tool, dexdump, that gives you the code in an apk. That's all you need, read the documentation on it, it's not hard. You've asked this question before, read the dexdump output. If you need the actual source, that will be harder (mostly because of people using proguard, etc...), and you

Re: [android-developers] how to decompile APK file

2011-09-15 Thread RAJU V
i cant get you can u pls explain. ~~RAJU~~ ~~www.itdoall.co.cc~~ On Fri, Sep 16, 2011 at 8:15 AM, Kristopher Micinski wrote: > dexdump. > > Kris > > On Thu, Sep 15, 2011 at 10:41 PM, RAJU V wrote: > > Hi this is RAJU... > >Please help me how to decompile APK file pls..

Re: [android-developers] how to decompile APK file

2011-09-15 Thread Kristopher Micinski
dexdump. Kris On Thu, Sep 15, 2011 at 10:41 PM, RAJU V wrote: > Hi this is RAJU... >    Please help me how to decompile APK file pls > > > > > > > > ~~RAJU~~ > ~~www.itdoall.co.cc~~ > > -- > You received this message because you are subscribed to the Google > Groups "Android Develope

[android-developers] how to decompile APK file

2011-09-15 Thread RAJU V
Hi this is RAJU... Please help me how to decompile APK file pls ~~RAJU~~ ~~www.itdoall.co.cc~~ -- 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

[android-developers] Re: After Signing Pressing App Icon Restarts App Every Time

2011-09-15 Thread GregAZ
It happens if I sign it and not zip align it. Maybe my jarsigner was updated? I guess I'll see what I have and if there's a newer one. On Sep 15, 9:10 pm, GregAZ wrote: > As the title says, but I'll try to make it easier to understand. > > I copied a project using Windows explorer, imported it,

Re: [android-developers] Not able to add event to Calendar in Samsung Galaxsy S

2011-09-15 Thread TreKing
On Thu, Sep 15, 2011 at 4:31 AM, nisha wrote: > I am not able to add event to calendar in samsung web calendar. version > 2.2. > > Please help. > "samsung web calendar" has nothing to do with this. Find a more appropriate forum. And when you do, try and explain yourself a bit better. "I'm not a

Re: [android-developers] Opening a PDF from raw folder

2011-09-15 Thread TreKing
On Wed, Sep 14, 2011 at 1:21 PM, Abel wrote: > My code runs but displays no error or the file. > What do you expect to see when you do nothing with the InputStream you open? - TreKing

[android-developers] Re: Loading many sound clips leads to long app start times

2011-09-15 Thread fog
Ok, I fixed my problem, so I thought I would post what I did here for historical purposes. Rather than load up all sound clips at once, I divided my loadClips() into groups of 10 clips in a case structure. On app-start, I load 10 clips, on the button press, I load 10 more, and continue to do this

[android-developers] After Signing Pressing App Icon Restarts App Every Time

2011-09-15 Thread GregAZ
As the title says, but I'll try to make it easier to understand. I copied a project using Windows explorer, imported it, and then used the Android menu to rename the application package. Then I ran it, worked great (just as I would expect). I signed it, uninstalled the dev version from my phone,

[android-developers] Device/Emulator running out of storage with last ADB?

2011-09-15 Thread Zsolt Vasvari
I've been running into this issue for the last coupe of months, but I thought this was that my Nexus One was running low on storage. I cleaned off a bunch of apps, but it appears that my device will run out of app storage space after a few dozen pushings of my app to the device during development.

[android-developers] Re: Drawing errors during a shrink animation in Android 2.3.4

2011-09-15 Thread neuromit
bumb... On Sep 13, 4:23 pm, buda gavril wrote: > did you trued to invalidate the view? maybe if you draw it again it > will look good > > On Sep 13, 6:10 pm, neuromit wrote: > > > > > > > > > I have 12 ImageButtons setup in a 3x4 grid. When the user clicks on an > > image button it grows to fill

[android-developers] USB - IR drivers

2011-09-15 Thread warriorinjapan
Dear All, Does any one of you have experience of writing the USB drivers on Android SDK for InfraRed transmitters. Thank you. -- 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@googlegr

[android-developers] Re: Android Market stats broken again?

2011-09-15 Thread Zsolt Vasvari
I've been getting steady comments, so that's not an issue for me. But the Install # > Download # is. On Sep 16, 8:32 am, TreKing wrote: > On Thu, Sep 15, 2011 at 6:31 PM, b0b wrote: > > And I suspect rating/comments to not be updated too. > > My last comment on my paid app as a month ago. Jus

Re: [android-developers] what do you use for cross platform analytics?

2011-09-15 Thread TreKing
On Thu, Sep 15, 2011 at 5:09 PM, vincew wrote: > What are you all using to track analytics? Google Analytics. - TreKing - Chicago transit trackin

Re: [android-developers] Handling Adjacent Fragments in ViewPager Contributing to Options Menu

2011-09-15 Thread Jake Wharton
That is correct. And that is what Dianne is talking about above with an additional instance boolean on a fragment which denotes whether or not the menus are exposed. If you're interested, I have a library which is a superset of the compatibility library that implements this feature in a way tha

[android-developers] Basic4Android app Portals published on Market

2011-09-15 Thread Thomas
Hello All, Just a note to say my Android apk Portals was published on Android Market. I used Basic4Android to create this little game app and it works on my Android G1 Developers Model and on my Droid X2 . You can see some screenshots at http://tombtalk.net/?p=366 Portals is a location based GP

Re: [android-developers] Re: showing the default A icon on google maps

2011-09-15 Thread TreKing
On Thu, Sep 15, 2011 at 3:38 PM, guich wrote: > Why is adding a position so dificult? > It's not. Have you gone through the MapView tutorial? > We ask to move to a coordinate, it would be useful to just pass a name and > show that name on the map, without having to deal with overlays and so on

Re: [android-developers] Re: Is my brother authorized to buy and review my app?

2011-09-15 Thread TreKing
On Thu, Sep 15, 2011 at 7:55 PM, sblantipodi wrote: > It it ok to buy my app from the same IP address I use to post apps on > android market? > You don't use an IP address to post to the Market - you use your Google Account, which already prevents you from purchasing your own paid app. In any c

Re: [android-developers] Saving bound service state before it is killed

2011-09-15 Thread Mark Murphy
http://stackoverflow.com/questions/7438516/saving-bound-service-state-before-it-is-killed-by-android/7439024#7439024 On Thu, Sep 15, 2011 at 7:01 PM, Darshana wrote: > When a service is killed by the OS (due to low memory or low power). > Does the service get notified before it is killed? Does th

Re: [android-developers] Service priority

2011-09-15 Thread Mark Murphy
On Thu, Sep 15, 2011 at 7:53 PM, Darshana wrote: > Context: We have a foreground Activity X and 3 services: Service 1, > Service 2 and Service 3. Why? Why not one service? > Service 2 is started with onStartService and is set as a foreground > service (startForeground()), it then binds to servic

[android-developers] Google Transate and Google Goggle

2011-09-15 Thread Larry Stephenson
I have the New Blackberry Torch 4g and I can't seem to be able to put the above 2 products on it??? They are fantastic and work well on the Samsung Tablet -- 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] Android Developer Starting Salary

2011-09-15 Thread aleph_null
Hello all, Does anyone have any idea how much a decent starting salary for android developers is? I'm considering an offer I received, but am not sure if it's appropriate. thanks! -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to

[android-developers] Saving bound service state before it is killed

2011-09-15 Thread Darshana
When a service is killed by the OS (due to low memory or low power). Does the service get notified before it is killed? Does the onDestroy() callback get called? Our main concern is our ability to save the state of a service before it is killed. We know that the service may be restarted by the sys

[android-developers] Service priority

2011-09-15 Thread Darshana
Context: We have a foreground Activity X and 3 services: Service 1, Service 2 and Service 3. Consider the following case: Activity X binds to service 1 Service 2 is started with onStartService and is set as a foreground service (startForeground()), it then binds to service 3. We know that servi

[android-developers] Loading many sound clips leads to long app start times

2011-09-15 Thread fog
Hello all, after searching for a while for a solution to my issue, I thought I would post the question here to see if someone has a better answer. First off, I'm very new to Android programming, and programming in general (i've only really worked with PHP in the past), so I've been kinda learning

[android-developers] Application hardware acceleration using Android Open Acessory API

2011-09-15 Thread Ahmed Abdelfattah
Hello , I am thinking of making an application on image processing that requires heavy computations and I want to accelerate it using FPGA and I read about "Android Open Accessory API" . Is it possible practically to design my custom hardware that actually accelerates the application knowing that t

Re: [android-developers] where is log ?

2011-09-15 Thread TreKing
On Wed, Sep 14, 2011 at 8:40 PM, danny wrote: > I don't know where are these log files. > Watch this: http://tinyurl.com/6ju6jqh > of course I can put all log printed by my code into a file > That is a better idea.

[android-developers] Re: Is my brother authorized to buy and review my app?

2011-09-15 Thread sblantipodi
The problem is. It it ok to buy my app from the same IP address I use to post apps on android market? Don't you think that google will find it as a cheat? Is there some possibilities that google will ban my account for this? I will buy only one license. On Sep 15, 7:36 pm, Indicator Veritatis wro

Re: [android-developers] NFC application startup on Home screen

2011-09-15 Thread Mark Murphy
On Wed, Sep 14, 2011 at 5:03 PM, rapgaroo wrote: > is there a way to start a specific application when tapping to a NFC > tag without bringing out the default Tag application on the Android > nor the app chooser? Yes. You need the appropriate . See: https://github.com/commonsguy/cw-advandroid/tr

Re: [android-developers] android sdk changes for customizing the Firmware download support from URL

2011-09-15 Thread Mark Murphy
Step #1: Visit http://source.android.com Step #2: Click on the Community tab Step #3: Find a Google Group that is relevant for your question Step #4: Ask your question there This group is for developing applications with the Android SDK, not for firmware development. On Thu, Sep 15, 2011 at 11

Re: [android-developers] Re: Android Market stats broken again?

2011-09-15 Thread TreKing
On Thu, Sep 15, 2011 at 6:31 PM, b0b wrote: > And I suspect rating/comments to not be updated too. My last comment on my paid app as a month ago. Just today I finally got a new one on the free version - before that last one was also a month ago exactly. Good times!

[android-developers] Placement of the details fragment

2011-09-15 Thread bburd
Common user interface guidelines strongly recommend putting a list-of-items fragment on the left and a details-for-the-chosen-item fragment on the right. Does anyone know if this pattern works for locales in which writing goes from right to left (such as Hebrew)? Thanks. -- You received this m

[android-developers] Prototype App Creation

2011-09-15 Thread Nick Cunningham
I'm looking to create a prototype of a product I've had in mind. In order to do this I need an app that can read an NFC chip and scan a QR code, then search some sort of database matching a serial number on the chip and the QR code to some more information. I really have no experience developing an

[android-developers] web-database

2011-09-15 Thread shopno nill
I am working with location based application using android and google map. I need to find nearby restaurant,school,hotel etc.And i have tried to use google place api.But it does not work in bangladesh. For this reason i have decide to use Network Connection to store data on the web with own networ

[android-developers] what do you use for cross platform analytics?

2011-09-15 Thread vincew
I've got an app that I developed for Android and for iPhone and I'd like to have something like flurry analytics to track usage by geographic area. The problem with flurry is that it breaks data down per platform so I might see 300 visitors for iPhone and then 500 visitors for Android and then have

[android-developers] Gallery and multiple calls of getView

2011-09-15 Thread Kiko Llaó Garcia
Here is the code: public class HelloGallery extends Activity { @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); Gallery g = new Gallery(this); g.setAdapter(new ImageAdapter(this)); setCon

[android-developers] Debugging Junit Testcases

2011-09-15 Thread Christian Pelster
Hi all, I'm currently trying to debug a simple Junit Testcase. My setup is a simple HelloWorld project, with an accompanying testproject (set up accordingly to http://developer.android.com/resources/tutorials/testing/helloandroid_test.html). The testcase that looks like this: --- public class Re

[android-developers] Re: Android's Virtual Device (AVD) doesn't start

2011-09-15 Thread Peter
I had a number of problems starting my VM as well. Not sure what OS you're running on, but my primary dev machine is Windows Vista 64-bit. I was running into issues because I didn't have the environment variables set up. Try running these two commands from the command prompt: SET PATH=%PATH%;c:\Ja

Re: [android-developers] Re: app causes reboot on DroidX after activity gets destroyed - anybody having similar issues?

2011-09-15 Thread Bhoopendra Singh
On Fri, Sep 16, 2011 at 12:18 AM, Irene wrote: > Hi, > > I know this is an old thread, but did you ever figure out exactly what was > causing this? I'm running into the same issue suddenly and would appreciate > any help I can get. > > Thanks, > Irene > > -- > You received this message because yo

[android-developers] How to capture Xon and Xoff of BluetoothPrinter

2011-09-15 Thread Sebs
Hi, I am trying to print a text file by my android phone but it seems my bluetooth printer is having just 16k memory . Can any one suggest me how to sence or understand the XON AND XOF status of BluetoothPrinter. regards, Sebs -- You received this message because you are subscribed to the

[android-developers] xml files errors

2011-09-15 Thread Selmen Arous
When the problem comes from xml file , I think its better that the debugger detects automatically the error location , or even better , predict the error in design time ! -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this grou

[android-developers] Blue tooth Printing in android

2011-09-15 Thread Sebastin Basimalla
Hi all, I am trying to print in a blue tooth printer by an android device. The problem i am facing is that my printer is having just 16k of buffer .If i am sending my file larger that 16k it is ignoring this. Any help will be appreciated. Regards, Sebs -- You received this message bec

[android-developers] Collapsible Views and Dynamically Expanding Editable List

2011-09-15 Thread Srini Raju
HI All, I am new to andriod. I am trying to learn android development by developing a contacts application. In this process I am having a couple of questions. 1. How to develop a collapsible views. By collapsible View I mean a region which can be expanded and closed by user. 2. How to develop a

[android-developers] about bluetooth discovery permission issue

2011-09-15 Thread Alpha
In my app, I try to make the bluetooth device in discoverable state.The suggested solution is to send the REQUEST_DISCOVERABLE intent and the system will deal with it to make the bluetooth device discoverable 。The problem is after i send the intent .My application will create a permission dialog t

[android-developers] android sdk changes for customizing the Firmware download support from URL

2011-09-15 Thread sanjeev bhatt
Hi All, We are currently working on making the customised changed of the android source code ,in the process we would like to provide the additional capability to provide the firmware upgrade on the fly with the new firmware.bin. Kindly let us know the source code in android framework SDK where

[android-developers] ImageView.setImageResource() causes GC every time

2011-09-15 Thread Setsuki
Hi everyone. Basically, I have a grid of ImageButtons, and if the user touches the right one, every image changes It worked fine on 2.x, but now I have a problem with 3.1, galaxy tabs 10.1 precisely. everytime I call setImageResource, (or setImageBitmap using BitmapFactory), the changing is awful

[android-developers] gTalk

2011-09-15 Thread citizen2701
When will Google Talk on android support multiple gtalk accounts? Maybe it could include simultaneous logins, or account switching like in gmail. It would seem many would appreciate this option. Thank you! -- You received this message because you are subscribed to the Google Groups "Android Deve

[android-developers] Elcipse ListView Tutorial No Launcher activity found!

2011-09-15 Thread SrChallenge
Another just learning problem.Loaded and ran basic HelloAndroid program ok. Now trying developers Tutorial on ListView. Orignially followed tutorial as given. Then tried many changes to get it to run properly. Program will only load standard android AVD view. Ignores my attempt at a list vie

[android-developers] BitmapFactory 's decodeByteArray and decodeStream returns null

2011-09-15 Thread Siji T G
I am trying to decode ARGB byte array into bitmap to display it as an image view. I tried using BitmapFactory's decodeByteArray() and decodeStream() but both way gives null as Bitmap. But when I create bitmap using createBitmap () and setPixels it works perfect. Here is the working code. data is

[android-developers] Re: How to encode the integer(30digit in to 10 digit) and decode it

2011-09-15 Thread Jim Welch
More info would be helpful: why 10 digits? Why not store it as as String? -- 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] Why android can't provide custom of radio frequency function?

2011-09-15 Thread mihn tang
In order to keep the cell phone to the car radio receiver send radio signal, and to make the automatic control. We hope android SDK provides a set of complete and car ECU system communication interface -- You received this message because you are subscribed to the Google Groups "Android Developer

[android-developers] Re: app2sd restrictions - sharing a workaround to allow moving your app to SD card

2011-09-15 Thread Edison Wang
Haha Martin, thanks for sharing this! I was just wondering about how you did it. :) -- 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, s

[android-developers] Registration_id=null in Android C2DM

2011-09-15 Thread Kanika Sayal
Getting registration_id = null with the follwoing code while implementing Android C2DM Service.I am working on Android 2.2, and the Emulator is also having google account logged in, Can anyone please suggest me what should I do with the code so that it can return valid registration id?? public voi

Re: [android-developers] Handling Adjacent Fragments in ViewPager Contributing to Options Menu

2011-09-15 Thread psychotik
I think this problems extends beyond just ViewPager - it looks like a flaw in how FragmentManager handles dispatching of Context Menu Item selection. Here's the relevant code from FragmentManager.java (as of the current ACLv4): public boolean dispatchContextItemSelected(MenuItem item) {

[android-developers] Not able to add event to Calendar in Samsung Galaxsy S

2011-09-15 Thread nisha
I am not able to add event to calendar in samsung web calendar. version 2.2. Please help. -- 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 gro

[android-developers] Re: PNG images with sound in Android

2011-09-15 Thread Wardi
Hello parasnath, Yo may refer to this topic here http://groups.google.com/group/android-developers/browse_thread/thread/11e647a62b522535 it may helps you out a bit. Enjoy ! On Sep 15, 8:40 am, parasnath wrote: > I have an Arduno comic in PDF format.I break it into PNG form and > there are some te

[android-developers] Android ( Battery usage)

2011-09-15 Thread krishna
Hi, Is there any difference between the default(apps installed along with the android OS) and apps installed later by user. if yes then how will we know which application is installed by the user. Battey used by installed application? If any one of us have this idea please let me know. Regards Vil

[android-developers] Quick Android App Dev Question from a Systems Engineering Viewpoint...

2011-09-15 Thread yantman99
Hi I am new to Android App Development. My question is from a systems engineering standpoint, instead of writing individual apps that work specific to one phone, what are the down sides of writing a more universal app that does the same thing on many phones in terms of bloated and inefficient code

Re: [android-developers] Copy&Paste option in android

2011-09-15 Thread venu reddy
Hi Guys, Am using Webview for load the URl(URl contains one page which is stored in the my local server) that psge contians scroll bar also.. Problm is in emulator total page is not display , some page is cutting, abd also scroll bar also not coming.. Can u pls help me On Thu, Sep 15, 2011 at 4

[android-developers] Techniques for Live TEXT Data Streaming from Server to Android Device

2011-09-15 Thread noordroid
Hi, Hi, My requirement is, I have text data on my server (like Amazon or Google App Engine), which I have to live stream on my Android device. I see lot of information w.r.t media (audio & video) streaming, but none about live text streaming. Few questions: The protocols used for media streaming

[android-developers] where is log ?

2011-09-15 Thread danny
Hi When publish a app, I want get all running time and crash log back to me, but I don't know where are these log files. of course I can put all log printed by my code into a file, but how about system log? Thanks a lot! -- You received this message because you are subscribed to the Google Groups

[android-developers] [Fragments/supportv4] How do I make ViewPager/TabHost attatch all tabs and not just the current and the one next to it?

2011-09-15 Thread leson
I'm building a tabbed UI in Android based on the supportv4 demo FragmentTabsPager.java. After adding my tabs (there are four of them) only the current tab and the one next to it is attached (and thus not instatiated yet I guess). The other two tabs are attached only when I swipe to or tap them. Ho

[android-developers] regarding text clipboard and battery

2011-09-15 Thread ibrahim shaikh
I have selected something , it said it has copied to clipboard but I can't find where is clipboard and how to improve battery backup -- 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@goo

[android-developers] NFC application startup on Home screen

2011-09-15 Thread rapgaroo
I've been trying to solve this for ages but couldn't find a proper answer. I have a NFC application installed on my Nexus S and I'm trying to execute that application whenever I tap on my NFC tag. Inside of my tag contains an URI. Currently, if I tap on my NFC tag, the default Tag application gets

[android-developers] Re: Recorded voice is very very low and lot of noise is recorded.

2011-09-15 Thread Harpreet
Hello everybody Any thought? On Sep 13, 9:19 pm, harpreet singh wrote: > Hi, > > I am trying to record the voice using AudioRecord class and writing > the read bytes to speaker using AudioTrack class. I am able to hear > the voice coming from Speaker but the voice is very low and a lot ofnoisei

[android-developers] Memory Leaks in Native Code (No Valgrind)

2011-09-15 Thread Narain
Hi , I would like to know , how we can identify memory leaks in Native code (C/C++ Libraries). There are tools like Valgrind, but it doesn't support all features for ARM . Do i need to write my Malloc Wrapper or Is there any stuff i need to do with libc or anythin else? Please provide your sugg

Re: [android-developers] Copy&Paste option in android

2011-09-15 Thread venu reddy
Thankq Bhaskar... On Thu, Sep 15, 2011 at 3:58 PM, bhaskar bommala wrote: > Hi , > You can not do copy paste options in emulator ,those will work in device > only .. > > > On Thu, Sep 15, 2011 at 3:56 PM, venugopal reddy > wrote: > >> Hi Friend, >> >> What are options for copy and paste in andro

[android-developers] OMA DRM Android Application

2011-09-15 Thread Prashanth KM
I am developing an android application (Photo Album) which renders OMA DRM protectes image files (Forward Lock and Combined delivery). Android version : Android 2.2 and later versions (not honeycomb) I am using availavle OMA DRM libraries (libdrm.so and libdrm1_jni.so) to render the images. But

[android-developers] Opening a PDF from raw folder

2011-09-15 Thread Abel
I'm getting stuck trying to open a pdf from the raw folder. My code runs but displays no error or the file. I am not worried about layout at the moment as I'm just trying to get this app to display just one pdf file located in the raw folder. My code: package com.pdftest; import java.io.InputStre

[android-developers] join group

2011-09-15 Thread Daniel Quinones
I work for a Navigation & Telematics Group looking to join your group. thanks, Daniel Quinones -- 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 t

[android-developers] Is it possiable to customize the calling menu?

2011-09-15 Thread 23026...@qq.com
The situation is that i want add two extra menu item to the menu in order to send the ECard to others when calling.And i used to try some way to do this, create two image buttons float on the screen,but it has a problem , when user click the virtual keyboard, it'll cover the virtual keyboard, and i

[android-developers] fling deceleration

2011-09-15 Thread bob
What are the best formulas to use for fling deceleration? -- 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-develop

[android-developers] Re: Android Market stats broken again?

2011-09-15 Thread b0b
Same here. And I suspect rating/comments to not be updated too. And we can't even complain on the Market technical forum, as we developpers are considered as third class citizens. On this forum (not this one, the Market one) someone is doing an admirable job at closing every thread involving deve

  1   2   >