Re: [android-developers] Android and web server connectivity

2011-08-05 Thread sourabh sahu
Can you please elobrate it more(Technically). Thanks, Sourabh On Fri, Aug 5, 2011 at 5:11 AM, TreKing treking...@gmail.com wrote: On Thu, Aug 4, 2011 at 8:34 AM, ashkmth ashishkmt...@gmail.com wrote: The android client should be able to retrieve the the latitude and longitude of locations

Re: [android-developers] Android and web server connectivity

2011-08-05 Thread Ratheesh Valamchuzhy
hi using the http connection /post we canretrive the data from the mysql server and use...plse explain the more requirement thanks -- 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] Android and web server connectivity

2011-08-05 Thread sourabh sahu
I want the data should come in XML format from mysql server and at android side I will parse. Lets say I have taken a webspace on some server providing me MYSQL database.now what should I do? If a user request it and server will generate and XML response. Question is How we can generate XML from

Re: [android-developers] Re: How to execute KILL -9 pID command

2011-08-05 Thread arun kumar
/* Way one */ android.os.Process.killProcess(android.os.Process.myPid()) /* Way Two */ System.exit(0); On 8/5/11, vinaykant vinaykant.s...@gmail.com wrote: Thanks for your reply.. Is there any way using any package or API to get this thing done? Regards Vinay On Aug 5, 4:27 am, Paul

[android-developers] Re: Weird behavior when two applications with Similar Package names are installed

2011-08-05 Thread Alok Kulkarni
Solved: I was using an internal Broadcast mechanism for starting activity and displaying toasts.Both applications had the same Action name :) So both applications were receiving the broadcasts ... On 8/4/11, Alok Kulkarni kulsu...@gmail.com wrote: HI, I have written an app with base package as

[android-developers] MonkeyImage sameAs API issue

2011-08-05 Thread FWF-SH
I downloaded latest android SDK package (android-sdk_r12-windows.zip) from website, when I used sameAs API in MonkeyImage object to compare two Android pictures, please refer to below code: from com.android.monkeyrunner import MonkeyRunner, MonkeyDevice, MonkeyImage

[android-developers] Remove texture in GLES20TriangleRenderer

2011-08-05 Thread Mickaël Gachon
Hello, I'm trying to remove the texture in the GLES20TriangleRenderer google code. http://developer.android.com/resources/samples/ApiDemos/src/com/example/android/apis/graphics/GLES20TriangleRenderer.html I remove the texture pos in the mTriangleVerticesData I remove all parts dealing with

[android-developers] how to get the resource id of the set wallpaper

2011-08-05 Thread Hiko
Hi, I faced the problem when I develop the application concerning wallpaper. As the subject of this message, I have no idea how to get the resource id of the set wallpaper. In addition, that wallpaper is as static image and in res/drawable folder. Programmatically, I want to know the resource id

[android-developers] Re: I need a CamScanner like example

2011-08-05 Thread ko5tik
We are working on pure java opensource OCR library (which also includes image processing - mostly bw), and it is used in android applications: http://sourceforge.net/projects/javaocr/ You are welcome to give it a spin and ask questions on your mailing lists On Aug 4, 2:26 pm, ricardocunha

[android-developers] Verification of a certificate stored in an xml file , against a particular Root Certificate using libxmlsecurity and openSSL in Android.

2011-08-05 Thread mayur
I want to verify a particular certificate stored in an xml ,against a [self signed] root certificate using openssl. For this, am using libxmlsecurity [ internally has openssl ] for parsing my signature.xml having the certificate . 1. For adding Root Certifiates to keystore am using

[android-developers] Re: Live Wallpaper Orientation Changes

2011-08-05 Thread Moss
Thx for the response. I'll investigate a bit more and post in the LW list :D On Aug 4, 11:44 pm, Adam Ratana adam.rat...@gmail.com wrote: Hi Moss, there is a google group called GLWallpaperService around an open source OpenGL WallpaperService implementation, you might want to check it out

[android-developers] Android Url Redirect

2011-08-05 Thread gaurav gupta
Hi Guys, M calling a webview to show a website, but in mobile or tab. but url is redirecting . i want to open a particular website , not its redirected url. m using this code , Kindly check my code and let me know where is problem. its urgent. Thanks in Advance. WebView mWebView; @Override

[android-developers] Re: How to get the nfc card' UID?

2011-08-05 Thread Michael Roland
Hallo, the tag object's getId() method should work just fine for most cases[1]. I.e. byte[] uid = tagFromIntent.getId(); [1] Note that some tag platforms use random UIDs. For some others the method may return only a partial UID. Like NFC Forum Type 1 tags, where the method returns only 4 bytes

Re: [android-developers] Verification of a certificate stored in an xml file , against a particular Root Certificate using libxmlsecurity and openSSL in Android.

2011-08-05 Thread Nikolay Elenkov
On Fri, Aug 5, 2011 at 5:04 PM, mayur mayurpr...@gmail.com wrote: 1. For adding Root Certifiates to keystore am using xmlSecOpenSSLAppKeysMngrCertLoad() of libxmlsecurity which calls openssl apis to do so . 2. To verify this signature file against a Root Certificate i use libxmlsecurity

[android-developers] Re: DategramSocket.receive returns after a long time

2011-08-05 Thread Indicator Veritatis
Come to think of it, I should have been able to figure out that answer from your previous posts. But it does still suggest an interesting test: does this failure occur ONLY when using WiFi? That is, if you both access the HTTP server and receive UDP over the carrier's data connection, does it work

Re: [android-developers] Android Client Authentication with Spring Security 3

2011-08-05 Thread Daniel Drozdzewski
Kevin, You are right - pure REST service should be stateless. But as usual, life is not just black or white and there is lots of room for 'less pure' services. Technically cookie is a part of each request, so you are authenticating with every call, but using session token instead of user

[android-developers] CallBack Functionlaity in JNI - Android

2011-08-05 Thread Vikas KM
Hi All, I have a Application which is written in C, i need to call a Java method from the C. The Call from which shared library happens is also part of the JNI. Eg: *HelloWorld* is my App which uses the *HelloJNI.so* as the JNI layer, Now this HelloJNI.so is dependent on *HelloC.so* Now i want

[android-developers] Re: CallBack Functionlaity in JNI - Android

2011-08-05 Thread Vikas KM
Hi, Got it.. Using function pointers the cycle dependency can be resolved.. -- Regards Vikas KM On Fri, Aug 5, 2011 at 2:15 PM, Vikas KM vikki...@gmail.com wrote: Hi All, I have a Application which is written in C, i need to call a Java method from the C. The Call from

[android-developers] Re: Why is onTouch called 2 times for every touch?

2011-08-05 Thread Nikolay Elenkov
Replying to group, where it belongs. Sending me a personal message (twice!) won't really help you. The more people see this, the better chance you have of getting an answer MobileVisuals On Fri, Aug 5, 2011 at 5:46 PM, MobileVisuals eyv...@astralvisuals.com wrote: I debugged the action with

Re: [android-developers] Re: Maths App

2011-08-05 Thread Gaurav Agarwal
Hi Thanks for the reply and advice. I don't have to 'read' and interpret the user rough work so that makes life simple. I may implement the button idea to scroll through the Canvas. I could not understand what treking was talking about. I may need to spend some time on Gestures. I joined this

[android-developers] Re: MapView Tiles not loading on my device, they are in my emulator

2011-08-05 Thread Tonez
Hi TreKing, Thanks for the response. After checking my application tag to see if debuggable=true was there I actually didn't have it in there, after putting it in I still can't get my map tiles to load on my device using my debug api key (I cleaned my project, uninstalled my app from the phone

[android-developers] bug in the ADT v.12.0.0 ?

2011-08-05 Thread hjo1620
http://developer.android.com/guide/developing/projects/index.html , Note that a library project cannot itself reference another library project... But in reality, with this eclipse configuration you can add a reference from a library project to another library project: Eclipse Java EE IDE for

[android-developers] Re: MapView Tiles not loading on my device, they are in my emulator

2011-08-05 Thread Tonez
Ok I got it sorted. All that was needed was rebooting my device. I never really turn it off, whenever I make changes to my .apk i uninstall it using the settings of my device - evidentally in this case that wasn't enough. Cheers for the help :). On Aug 5, 10:15 am, Tonez apires...@gmail.com

[android-developers] Canvas manipulation in Sensors.java from ApiDemos

2011-08-05 Thread Mercy
I'm trying to understand how to use the canvas and am going through the example provided in the ApiDemos. I'm very confused by this section of code: 1 canvas.save(Canvas.MATRIX_SAVE_FLAG); 2 canvas.translate(x, w*0.5f + 4.0f);

[android-developers] Pulling facebook feed using facebook android sdk

2011-08-05 Thread Josh Fokis
I cant seem to figure out how to pull the feed for my app im a novice at this. if any one has a code just for the feed for the logged in user that would be great or if able to show me how to pull the code. -- You received this message because you are subscribed to the Google Groups Android

[android-developers] Maximum size of .apk file

2011-08-05 Thread Thế Hiển Đoàn
Hi Sir / Madam, I heard in the publishing requirements that til now, the maximum size of .apk file must not exceed 50 MB. This prevent me from developing my apps. Cause my apps are kind of 3D animations which requires a lot of memories and they will run on Tablet devices which have a

[android-developers] Re: Android Url Redirect

2011-08-05 Thread Yahel
Hey G., Redirection is done on the server side. So you don't really have a way of controlling that. The server does the redirection wether you like it or not BEFORE sending any web pages. So that you can't get the original site you were going for if the server doesn't let you. I'm not sure I

[android-developers] how to look and understand @ each Test Case in CTS : Please sugguest

2011-08-05 Thread saipraneeth
When I execute cases, few of them fail and i get an error message. some times it is harder to understand the Issue or error message. So if i can know the individual or exact flow of the Test case - i can current myself. Thanks gsaiprane...@gmail.com -- You received this message because you are

[android-developers] How to place two buttons side by side at the bottom of the android emulator to get the appropriate shape displayed by clicking on the appropriate buttons

2011-08-05 Thread Divya
Hello all, I am new to android. Am doing android application in windows XP usign eclipse. I tried to do an android application which should display appropriate shape by clicking on the appropriate buttons(buttons at the bottom of the screen). But I got 'Force close' message while running the

[android-developers] trouble writing output: opcode == null

2011-08-05 Thread jebarlin
Hi, When I build my android application from eclipse, I am getting the issue : trouble writing output: opcode == null Conversion to Dalvik format failed with error 2 I don't know the problem, Is it becoz of big size? After just compiling the java files, I created the jar file from the compiled

[android-developers] Re: Openssl for Android (libssl.so and libcrypto.so)

2011-08-05 Thread rickrvo
I can't get m nor mm commands to work. both say to try setting top... help please :\ On 4 Ago, 15:53, rickrvo rick...@hotmail.com wrote: I've read the instructions... and ran the envsetup.sh but didn't realize that it must be ran on the openssl folder and not on working_directory folder...

[android-developers] UI

2011-08-05 Thread Akhilesh Mani
hianybody please suggest me how to make such GUI that will show properly on all screens 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 unsubscribe

[android-developers] Working on making screen orientation to landscape.

2011-08-05 Thread david brock
what i want is to have the call screen/dial pad in landscape while in my car dock. ive been doing alot of research and while most of it is guess work i think im learning a bit. im in no way any kind of programer and have been on forums etc. running a custom phone.apk, someone is helping me and

[android-developers] IMAP protocol

2011-08-05 Thread Vinicius Moises de Oliveira
I would like to know how to work with the IMAP protocol on Android, I can not read emails from gmail. 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@googlegroups.com To

[android-developers] Ideas on providing add on packs for an app

2011-08-05 Thread Vance Turnewitsch
I have released an app on the Android Market that let's users create content on their devices and then use the content in the app. To increase attractiveness to the app, I would like to offer some pre- built content that users could download and use inside the app. I was thinking of offering

[android-developers] using ndk file creation

2011-08-05 Thread ks_paramakudi
Hi,i am developing android ndk project .i have one doubt how to create audio-equalizer to my design.please request to send me. -- 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] 3rdParty application icon

2011-08-05 Thread John
The motivation is to theme my desktop in an un-intrusive way, basically to create shortcuts on the desktop to 3rdParty apps with a different icon. The following code works, on the ASUS eeePad for the Browser, Gmail, and File Manager but not for other apps like Gallery. The error is Application is

[android-developers] Speech based Search

2011-08-05 Thread Ganesh
Hello All, I know this topic must have been discussed many times and i tried searching the solution for this problem for a long time. I am a newbee in android development and wish to include a speech based search on web in my app. What could be the possible way for it? Is there any plug-in for

[android-developers] Re: android mms types differences

2011-08-05 Thread Jim
If by delivered you mean that the MMS server received the message (i.e. it was delivered to the server, not necessarily the message recipient's phone), then your description is accurate. Outbox is a storage area for the message while it is queued for sending/being sent to an MMS server. (Like an

[android-developers] Re: map does not displaying in device

2011-08-05 Thread Tonez
Hi Ratheesh, I've been having the same problem, up until a few minutes ago when I sorted it out. The way in which I resolved this issue was by making sure the debuggable property of my application tag in AndroidManifest.xml is set to true - you can also do this by going to the Application tab in

[android-developers] Invoking Browser through an Intent, to perform HTTP POST

2011-08-05 Thread uday kiran jandhyala
Greetings! It is clear that the Android Browser app can be launched from any other application, through an Intent as : Intent intent = new Intent(Intent.ACTION_VIEW); Uri data = Uri.parse(http://www.google.com;); intent.setData(data); startActivity(intent); This would however internally perform

[android-developers] Generating DTMF tone

2011-08-05 Thread Akhilesh Mani
hi.Please guide me how to generate DTMF tone and sending 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, send email to

[android-developers] need a script to clear google map cache

2011-08-05 Thread vinaykant
Hi All, I am looking for any starting idea to make a script/app to clear the cache of google map application using 2.1 updated. Please help me to get some idea. Regards Vinay -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this

[android-developers] Re: Google Plugin Beta 2.4 - C2DM Always tries to register at local ip and times out.

2011-08-05 Thread RS
since the recent update to the plugin (2.4), the auto generated example isn't able to register with C2DM on production device (using the same accounts as before that worked). On Jun 19, 2:43 pm, Andy Bryant andybry...@gmail.com wrote: When you run your app against your local app engine, Eclipse

[android-developers] Ang.: bug in the ADT v.12.0.0 ?

2011-08-05 Thread hjo1620
I'm bumping my own thread, because this is in fact a big deal, and fundamentally affects how we can structure our Android apps. ** Create android library project A, mark as library. Create android library project B, mark as library. Press button AndroidLibraryAdd, and add reference to project

[android-developers] DatePickerDialog

2011-08-05 Thread Dev_red
Hi, i am using DatePickerDialog to display selected date. but i want to show only the dates upto current date. because the users could not be able to select upcoming dates. any idea? how to contol this? -- You received this message because you are subscribed to the Google Groups Android

[android-developers] Need tester for app on Honeycomb

2011-08-05 Thread Espiandev
Hi everyone, I'm in the process of testing a new release of my app; the primary feature of this release is for Honeycomb fragment/dual pane compatibility. I don't own a Honeycomb tablet (poor student!) and so I'm looking for someone to test my app. I've found a bug whereby the main activity

Re: [android-developers] Generating DTMF tone

2011-08-05 Thread Mark Murphy
You can generate a DTMF tone using ToneGenerator. If by sending it you mean playing it on a call, that is not supported, unless the device is in speakerphone mode. On Fri, Aug 5, 2011 at 3:00 AM, Akhilesh Mani coffeewitha...@gmail.com wrote: hi.Please guide me how to generate DTMF tone and

Re: [android-developers] need a script to clear google map cache

2011-08-05 Thread Mark Murphy
On Fri, Aug 5, 2011 at 6:04 AM, vinaykant vinaykant.s...@gmail.com wrote: I am looking for any starting idea to make a script/app to clear the cache of google map application using 2.1 updated. This is not possible via the Android SDK, which is the topic of this list. -- Mark Murphy (a

Re: [android-developers] UI

2011-08-05 Thread Mark Murphy
http://developer.android.com/guide/practices/screens_support.html On Fri, Aug 5, 2011 at 3:15 AM, Akhilesh Mani coffeewitha...@gmail.com wrote: hianybody please suggest me how to make such GUI that will show properly  on all screens -- Mark Murphy (a Commons Guy)

Re: [android-developers] Invoking Browser through an Intent, to perform HTTP POST

2011-08-05 Thread Mark Murphy
On Fri, Aug 5, 2011 at 1:13 AM, uday kiran jandhyala udayjandhy...@gmail.com wrote: I'm trying to explore to somehow launch Browser app, to perform a HTTP POST, instead of a GET request. AFAIK, this is not possible. -- Mark Murphy (a Commons Guy) http://commonsware.com |

Re: [android-developers] 3rdParty application icon

2011-08-05 Thread Mark Murphy
On Fri, Aug 5, 2011 at 1:38 AM, John android...@gmail.com wrote: The error is Application is not installed, which seems to be some generic android error which gives no real information for why the action is not working. No, it is a very specific error, indicating that the application you think

Re: [android-developers] Maximum size of .apk file

2011-08-05 Thread Mark Murphy
On Fri, Aug 5, 2011 at 4:25 AM, Thế Hiển Đoàn doanthehien1...@gmail.com wrote:       I heard in the publishing requirements that til now, the maximum size of .apk file must not exceed 50 MB. This prevent me from developing my apps. Cause my apps are kind of 3D animations which requires a lot

Re: [android-developers] IMAP protocol

2011-08-05 Thread Mark Murphy
Find an IMAP client library and try using it. I think there is an Android port of JavaMail available. On Thu, Aug 4, 2011 at 8:57 PM, Vinicius Moises de Oliveira nickz...@gmail.com wrote: I would like to know how to work with the IMAP protocol on Android, I can not read emails from gmail. --

[android-developers] Re: AdSence Publisher ID and Android Developer Console

2011-08-05 Thread Andre
No, I use the same e-mail. I can see (other forums too) that many people faced the same problem and the most disappointing is reaction from Google, or rather its absence... On 29 июн, 18:56, Roman G cheser...@gmail.com wrote: I have the same problem. Do you use different emails for AdSence and

Re: [android-developers] How does android decide to cache a process?

2011-08-05 Thread Mark Murphy
On Thu, Aug 4, 2011 at 9:32 PM, KK krishnakumar.ramachand...@gmail.com wrote: In Gingerbread Settings-Applications-MyApplications, the Running tab has been divided into two. Running Services and Cached Background Process. So how and when does Android decide to cache a process? How: by not

[android-developers] How to add layout xml file in mid

2011-08-05 Thread ANKUR GOEL
Hi all, I am making customize header and bottom menu through java code , please have a look for the image attached. now i want to include a xml file in mid of header and bottom menu or the the red seen portion. Suppose i have list in mid of these two so how to insert that xml in code . can

[android-developers] Ang.: bug in the ADT v.12.0.0 ?

2011-08-05 Thread hjo1620
According to this http://stackoverflow.com/questions/6955165/why-is-previously-prohibited-library-references-possible-in-adt-12-0-0 Latest version of ADT and Android build system both support nested library dependencies. Good stuff indeed. -- You received this message because you are

[android-developers] check wakelocked for each process

2011-08-05 Thread Hiko
Hi, I would like to check/detect which process(s) are waklocked in the device. if you have any idea for this,please let me know. -- 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] how to draw triangle

2011-08-05 Thread eman
Hi, I have a problem drawing triangle base on sides and angles. given the the values regradless SAS,AAA or etc... the app must draw the triangle accordingly to the values computed? any api will help? any idea? thanks a lot. cheers -- You received this message because you are subscribed to the

Re: [android-developers] check wakelocked for each process

2011-08-05 Thread Kostya Vasilyev
In the adb shell, type dumpsys power. 05.08.2011 15:36, Hiko пишет: Hi, I would like to check/detect which process(s) are waklocked in the device. if you have any idea for this,please let me know. -- Kostya Vasilyev -- You received this message because you are subscribed to the Google

[android-developers] Re: How to add layout xml file in mid

2011-08-05 Thread skink
On Aug 5, 1:32 pm, ANKUR GOEL ankur1...@gmail.com wrote: Hi all, I am making customize header and bottom menu through java code , please have a look for the image attached. now i want to include a xml file in mid of header and bottom menu or the the red seen portion. Suppose i have list

[android-developers] Re: ocr implementation with android

2011-08-05 Thread Nikolay
Hey blindfold, As far as i know at the moment we do not plan to develop such “wrapper” app for ABBYY Mobile OCR Engine due to contradiction with our licensing policy. But in any case, thanks for the interest to our Mobile SDK and notable product idea. My colleagues added it as a feature request

[android-developers] Re: how to draw triangle

2011-08-05 Thread skink
On Aug 5, 1:37 pm, eman eman.noll...@gmail.com wrote: Hi, I have a problem drawing triangle base on sides and angles. given the the values regradless SAS,AAA or etc... the app must draw the triangle accordingly to the values computed? any api will help? any idea? thanks a lot. cheers

Re: [android-developers] Re: How to delete a video file's entry from content provider

2011-08-05 Thread Rajkiran Bande
Thanks man. Thanks a lot. On Fri, Aug 5, 2011 at 7:44 AM, davemac davemac...@gmail.com wrote: Check this out: http://stackoverflow.com/questions/4430888/android-file-delete-leaves-empty-placeholder-in-gallery - dave http://www.androidbook.com/proandroid3 On Aug 4, 10:33 am, Raj

[android-developers] Re: Screen Recording or Screen capture

2011-08-05 Thread ColorTheorist
That is the easiest way to get a still-picture capture from the Android device if you are working in the Eclipse environment. Just open up the DDMS perspective and up near the top left window of that perspective next to 'Devices' is a screen capture option. This can be used to save the picture

[android-developers] ICC Profiles

2011-08-05 Thread ColorTheorist
I'll have to make some initial assumptions as I will be attempting to work with display modifications and color related activities. The initial assumptions that I have are that the Android OS will not let me modify display drivers and do color management corrections with ICC profiles. As far as

[android-developers] Software To Make Apps

2011-08-05 Thread Aazim Lakhani
Hi Everyone, I wanted to know , is there a software that can be used to make apps. Also, could this or some other software be used to make an app that could work on both Android iPhone -- You received this message because you are subscribed to the Google Groups Android

Re: [android-developers] Software To Make Apps

2011-08-05 Thread iñaki
Hi, Phonegap... On 5 August 2011 14:25, Aazim Lakhani charismatic.aa...@gmail.com wrote: Hi Everyone, I wanted to know , is there a software that can be used to make apps. Also, could this or some other software be used to make an app that could work on both Android

Re: [android-developers] Re: MapView Tiles not loading on my device, they are in my emulator

2011-08-05 Thread TreKing
Glad you sorted it out ... to answer the last few questions: On Fri, Aug 5, 2011 at 4:15 AM, Tonez apires...@gmail.com wrote: Is it even possible to debug the map view on a device using a debug api key? Yup. Just so I understand your last comment about release mode: in order to switch

Re: [android-developers] Android and web server connectivity

2011-08-05 Thread TreKing
On Fri, Aug 5, 2011 at 1:22 AM, sourabh sahu souruit...@gmail.com wrote: Question is How we can generate XML from MYSQL. Read MYSQL, write to XML. Really though, that question has nothing to do with Android development.

Re: [android-developers] How does android decide to cache a process?

2011-08-05 Thread TreKing
On Thu, Aug 4, 2011 at 8:32 PM, KK krishnakumar.ramachand...@gmail.comwrote: Mainly is there anything my app can do to tell the system to never cache my process? I'm curious why you would even want this ... ?

[android-developers] Drawing a smooth curve that connects 10 points in my bitmap

2011-08-05 Thread androidmediadeveloper
I have a bitmap that I draw on at runtime, and I basically come up with 10 points on the bitmap that I'd like to see connected with one smooth curve. Using the Path.lineTo to draw individual lines now which are obviously individual sharp lines connecting 2 successive points. Any good ideas for

[android-developers] Multiple APK support - Who's tried it?

2011-08-05 Thread String
So after tablet-optimizing one of my apps, I find that the APK size has nearly doubled (due to the new graphics), and I figure this is the perfect time to try out the Market's new multiple APK support. There's not been much chatter here about it, so I just wanted to ask... has anyone actually

Re: [android-developers] DLNA Core

2011-08-05 Thread Takeyuki UEDA
Hi keynes, I wonder that, is there any ready DLNA core which is open and documented? I think there might be no open source DLNA core because the specs of DLNA are opened to just DLNA member, with annual fee 10,000$, detailes are as follows. http://www.dlna.org/industry/join/overview/ -

[android-developers] Re: Strange effects on Android's truetype decoder

2011-08-05 Thread guich
Anyone knows if there's a OS version that respects this flag? I really don't want to rewrite my entire code in C#. :-( thanks guich -- 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] How to place two buttons side by side at the bottom of the android emulator to get the appropriate shape displayed by clicking on the appropriate buttons

2011-08-05 Thread Ratheesh Valamchuzhy
hi Divya First the problem is You using the same id to both image view and button so it displays the force to close erro the correct code is here package lello.tab; import android.app.Activity; import android.os.Bundle; import android.util.Log; import android.view.View; import

[android-developers] Re: Custom Simpleadapter not updating listview on notifyDataSetChanged

2011-08-05 Thread Vance Turnewitsch
I think there is a problem with your getView method. If the convertView is not null type.equalsIgnorCase(...)==true, then your view is not updated at all: getView returns the view that was passed in. On Aug 5, 1:53 am, Manish Garg mannishga...@gmail.com wrote: Hi All, I am using following

Re: [android-developers] Re: map does not displaying in device

2011-08-05 Thread Nick Risaro
On Fri, Aug 5, 2011 at 6:59 AM, Tonez apires...@gmail.com wrote: Hi Ratheesh, I've been having the same problem, up until a few minutes ago when I sorted it out. The way in which I resolved this issue was by making sure the debuggable property of my application tag in AndroidManifest.xml

[android-developers] Reg: Android Emulator Ports Network

2011-08-05 Thread Aluvala Suman
Hi All, I am writing an application which chooses the ports randomly, so when server is replying with response, i observe in wireshark that, its saying Destination Port Unreachable. As the port is choosen at the runtime , i am not able to add the port redirection, redir command by the time

[android-developers] Get image from Camera, which then is removed/hidden

2011-08-05 Thread Neilz
Hi all. In my app I let the user take a picture, which is then stored in the app as a Bitmap: Intent takePicIntent = new Intent (android.provider.MediaStore.ACTION_IMAGE_CAPTURE, null); startActivityForResult(takePicIntent, PICK_IMAGE_FROM_CAMERA_ID); In onActivityResult: Bitmap bm = (Bitmap)

[android-developers] Uploading apps on Android Market

2011-08-05 Thread Thế Hiển Đoàn
Hello, I write my apps which are kind of 3D animations. My apps would run on Tablet devices, and their size exceed 50MB. How can I upload them when Google Market only allows the app size limit of 50MB? -- You received this message because you are subscribed to the Google Groups Android

[android-developers] help with gdata install( I guess)

2011-08-05 Thread sabanim
Hello I am trying to use the gdata calendar api example found here http://code.google.com/apis/calendar/data/2.0/developers_guide_java.html#CreatingSingle. I am using eclipse. On CalendarEventEntry myEntry = new CalendarEventEntry(); I get an error CalendarEventEntry cannot be resolved to a

Re: [android-developers] Hard Crash (Reboot) in 3.2

2011-08-05 Thread Joshua Smith
I found the bug database at code.google.com, but I cannot find your bug report. FYI: I think we've found a work-around. We're using GL to copy to the screen and that seems much more stable (and a little faster). If it would help, I can send you the modified version of the test program that

Re: [android-developers] help with gdata install( I guess)

2011-08-05 Thread Mark Murphy
On Fri, Aug 5, 2011 at 10:45 AM, sabanim rickd...@gmail.com wrote: I am trying to use the gdata calendar api example found here http://code.google.com/apis/calendar/data/2.0/developers_guide_java.html#CreatingSingle. I am using eclipse.   On CalendarEventEntry myEntry = new

[android-developers] Re: map does not displaying in device

2011-08-05 Thread Tonez
Ratheesh didn't indicate if he's prepping his app for release, if he is then of-course, don't set the application's debuggable property to true. He can do so though if he's still testing, in my case it was the quickest way to accurately test my implementation for retrieving a users location. On

[android-developers] Re: Drawing a smooth curve that connects 10 points in my bitmap

2011-08-05 Thread niko20
You could increase the number of points just before actually drawing by first doing a cubic interpolation. A lineTo is a linear interpolation which is not what you want. A cubic interpolation will give you more of a curve shape. So take your ten points, and interpolate extra points between each of

[android-developers] .apk file is not getting downloaded from HTTPS site

2011-08-05 Thread dilu
Hi, I have a webserver on which I am putting my .apk file.I have given correct mime type also for apache web server. When I am trying to download from HTTP then it is working fine but the same thing is not getting downloaded from HTTPS site. I have a certificate for HTTPS. Any help will be highly

[android-developers] Re: MonkeyImage sameAs API issue

2011-08-05 Thread Raja
to work around this issue I'm using this python function in my script (it's terribly slow though) def sameAs(device, i1, i2, perc): e = ne = 0 for x in range(0, int(device.getProperty('display.width'))): for y in range(0, int(device.getProperty('display.height'))): #print 'x = %d,

Re: [android-developers] Uploading apps on Android Market

2011-08-05 Thread Brad Gies
Take the animations out of your app, and have the app download them when needed, or on the first run. Sincerely, Brad Gies --- MaxHOMEValue.com Kelowna, British Columbia, Canada email: bg...@maxhomevalue.com

[android-developers] Re: .apk file is not getting downloaded from HTTPS site

2011-08-05 Thread Chris Stratton
On Friday, August 5, 2011 12:07:06 PM UTC-4, dilu wrote: I have a webserver on which I am putting my .apk file.I have given correct mime type also for apache web server. When I am trying to download from HTTP then it is working fine but the same thing is not getting downloaded from

[android-developers] Re: I need a CamScanner like example

2011-08-05 Thread ricardocunha
I founded a iphone image processing, but I don´t have a iphone to test: http://code.google.com/p/simple-iphone-image-processing/ I need an java example or, other source but I need to test. On 5 ago, 04:44, ko5tik kpriblo...@yahoo.com wrote: We are working on pure java opensource OCR library

[android-developers] Re: .apk file is not getting downloaded from HTTPS site

2011-08-05 Thread dilu
Yeah I can download file from PC. On Aug 5, 9:29 pm, Chris Stratton cs07...@gmail.com wrote: On Friday, August 5, 2011 12:07:06 PM UTC-4, dilu wrote: I have a webserver on which I am putting my .apk file.I have given correct mime type also for apache web server.  When I am trying to

[android-developers] Do unique app names mean nothing in the Android Market?

2011-08-05 Thread Arpit Mathur
I released a free app about a week ago, called TimePiece ( https://market.android.com/details?id=com.arpitonline.worldclock). I picked a name pretty close to the end of the dev process since it seemed less important. Before publishing to the store I searched for a couple of non conflicting terms

Re: [android-developers] Do unique app names mean nothing in the Android Market?

2011-08-05 Thread Kostya Vasilyev
I tried searching for it and couldn't find it either. You can try and report this to Google: http://www.google.com/support/androidmarket/developer/bin/request.py?contact_type=publishing -- Kostya 05.08.2011 21:04, Arpit Mathur пишет: I released a free app about a week ago, called TimePiece

[android-developers] App Widget Automatically Deleted after Reboot

2011-08-05 Thread ndiiie 90
Hi all, I have problem in developing app widget. When i try it in real device, after i reboot my phone, the widget is automatically deleted from my home and i must reinstall the app to have the widget in widget list. Is there any specific code must be done to prevent that thing? Thanks --

[android-developers] Fetch TYPE_WORK address of a google contact

2011-08-05 Thread Goutom
Hi All A Google contact have address of types Work,Home, Other.I want to fetch a contact address of type Work.There is something to use ContactsContract.CommonDataKinds.Organization.TYPE_WORK . But I am unable to use it. Thanks in advance. Regards Goutom -- You received this message because

Re: [android-developers] Re: .apk file is not getting downloaded from HTTPS site

2011-08-05 Thread Nikolay Elenkov
On Aug 6, 2011 2:06 AM, dilu discover.dile...@gmail.com wrote: Yeah I can download file from PC. Do you get any warnings? Who issued your certificate? If it's not trusted by Android you won't be able to connect and download the apk. -- You received this message because you are subscribed to

[android-developers]

2011-08-05 Thread adithya holla
how to use android id effectively ?? everytime i use it the error flashes in eclipse saying id cannot be resolved -- 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: Drawing a smooth curve that connects 10 points in my bitmap

2011-08-05 Thread androidmediadeveloper
great suggestion, thanks niki, will try this and post on results ! On Aug 5, 12:03 pm, niko20 nikolatesl...@yahoo.com wrote: You could increase the number of points just before actually drawing by first doing a cubic interpolation. A lineTo is a linear interpolation which is not what you want.

  1   2   >