[android-developers] How i call Localhost file in application

2011-07-18 Thread Ankit Kasliwal
Hello Everyone, I put my Handler file in local server desktop machine i want to access in application on the place of *response = CustomHttpClient.executeHttpPost( http://abc.com/hendler/abc.ashx; , postParameters); * to test the application locally and solve issue.

[android-developers] Re: Horizontal List View

2011-07-18 Thread Zsombor
I couldn't find a decent alternative to this either. It seems that ListView can't be extended to somehow get it to display the elements horizontally. And replicating ListView is a pain too, because it's using some private apis. So you either come up with your own HorzontalListView implementation,

[android-developers] NFC Dynamic UID Read

2011-07-18 Thread Steve McRae
Does anyone know where the dynamic UID/NFCID1 that is presented by the Nexus S is generated and how to know, on the phone, what it is before or during its presentation? I have built an application on a point of sale device that reads the dynamic uid however without the ability to tie it to a

[android-developers] Re: Eole Survival Update Beta tester needed

2011-07-18 Thread TobyKaos
Someone have played to the beta? -- 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] how can i know which app is using GPU module

2011-07-18 Thread zhou haitao
Hi ALl, Now I have to know whether GPU module is being used, and which process or app is using GPU module. Any idea? 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] Re: Checkbox bug?

2011-07-18 Thread Ali Chousein
Make a bug entry here: http://code.google.com/p/android/issues/list -- Ali Chousein Geo-Filtered Assistant http://geo-filtered-assistant.blogspot.com/ Cisco Android marketplace (Chosen for Cisco Cius) https://marketplace.cisco.com/apphq/products/510 On Jul 17, 3:45 pm, Simon Platten

[android-developers] Re: clearing notification

2011-07-18 Thread kamiseq
I ll check that method name im using! yes it is called because my service is not running and there is no process for my app! -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

Re: [android-developers] Re: Checkbox bug?

2011-07-18 Thread Romain Guy
This is, unfortunately, working as intended. The position of the checkbox is defined by the background drawable. On Mon, Jul 18, 2011 at 1:21 AM, Ali Chousein ali.chous...@gmail.comwrote: Make a bug entry here: http://code.google.com/p/android/issues/list -- Ali Chousein

[android-developers] Re: (java.lang.NullPointerException at android.widget.ListView.setupChild(ListView.java:1838))I use listview and BaseAdapter

2011-07-18 Thread zatenoi
Thanks for your reply. I'm working like this. New a Handler in Activity's onCreate(),and after all things init,I send msg to Handler on a non-UI thread.When Handler receive a msg,it update the element or scroll the list by call notifyDataSetChanged and setSelectionFromTop in Handler's

[android-developers] Start Intent

2011-07-18 Thread rich friedel
contextWhat is the context of class B? If Class B is an activity the context will be Class B What is the setClass method setting? The class that the intent is looking for. If I want to start yet another activity from inside another class (class C) does the context get passed across these

[android-developers] Role of the Compatibility Library?

2011-07-18 Thread BHL
Up until 3 minutes ago, I was fairly clear on the role of the Android Compatibility Library (ACL) -- it was to provide backwards-compatible clones of stuff that exist for realz only in newer versions of Android. However, Roman Nurik just tweeted: ViewPager and PagerAdapter are in the

Re: [android-developers] Role of the Compatibility Library?

2011-07-18 Thread Romain Guy
It's also for cool APIs that can be useful to all app developers but that we don't necessarily want to add to the platform. On Mon, Jul 18, 2011 at 2:29 AM, BHL adsfors...@gmail.com wrote: Up until 3 minutes ago, I was fairly clear on the role of the Android Compatibility Library (ACL) -- it

[android-developers] Re: clearing notification

2011-07-18 Thread rich friedel
Just because the service is no longer there and the process gone, this does not mean onDestroy() was in fact called. The system can silently kill the service without ever calling onDestroy(). -- You received this message because you are subscribed to the Google Groups Android Developers group.

[android-developers] regarding Google Maps

2011-07-18 Thread nageswara rao rajana
Hi, I developed an application using API level 2.1 and installed on Samsung Galaxy Fit S5670. The problem is google maps is very slow. So please suggest me the issue. Thanking you, Nagu. -- You received this message because you are subscribed to the Google Groups Android

Re: [android-developers] regarding Google Maps

2011-07-18 Thread Raghav Sood
Get a faster internet connection? On Mon, Jul 18, 2011 at 3:43 PM, nageswara rao rajana nagu.raj...@gmail.com wrote: Hi, I developed an application using API level 2.1 and installed on Samsung Galaxy Fit S5670. The problem is google maps is very slow. So please suggest me

[android-developers] uevent handling in user-space

2011-07-18 Thread Hemant
I want to handle uevent in user-space mainly for battery status changed in my application. Can this be done using C program? Can this be done by calling a select() on one of the sysfs which indicates change in battery voltage? How Android polls uevents from kernel? Br/ Hvr -- You received this

[android-developers] Call to requestLayou() after an Animation ends

2011-07-18 Thread Paolo
Hi there! I'd try to move with Animation a LinearLayout with some stuff inside when clicking on it. Apply the Animation is pretty simple. I've done something like this. //ANIMATION public static Animation animationTest(int duration) { Animation anim = new

[android-developers] Android Java 7

2011-07-18 Thread Manuel R. Ciosici
Does anyone know anything about when will Android support the Java 7 APIs? Manuel -- 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

Re: [android-developers] uevent handling in user-space

2011-07-18 Thread Durgadoss Ramanathan
Hi, Android has a UEvent Listener in the Application Framework. This receives the UEvent from the Kernel. For BatteryStatus: You may want to look at frameworks/base/services/java/com/android/server/BatteryService.java Similarly, also at BatteryServer.cpp(corresponding JNI..) Basically the

[android-developers] Re: ActionBar/Mode Style Regressions with SDK 12r2 and 13r1

2011-07-18 Thread clemp6r
How did you fixed this? On Jul 16, 11:18 pm, Jake Wharton jakewhar...@gmail.com wrote: I managed to fix these up fairly easily. I can only assume the removed styles were not meant to be public yet and that the styling of action modes is being limited to provide a more consistent experience.

[android-developers] Re: Scrollviews within tabs

2011-07-18 Thread homerz
ok, sorry.. I should have shown the code too... anyway thankyou for your reply.. public class CreateDraftActivity extends TabActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState);

Re: [android-developers] Re: ActionBar/Mode Style Regressions with SDK 12r2 and 13r1

2011-07-18 Thread Jake Wharton
Removed references to actionModeStyle and actionModePopupWindowStyle. It would seem the only customization options for action modes going forward is their background imagehttp://developer.android.com/reference/android/R.attr.html#actionModeBackground. This is the only true regression in

[android-developers] Draw an arrow on map, which always points to the destination

2011-07-18 Thread crem
Hello, Im trying to realize the following: I want to draw an arrow as an overlay on my map, which always points to a destination point on the map. So the arrow tells the user which direction he has to take to reach the destination. Whats the common approach for this? hope you can help me. greets

[android-developers] Re: Draw an arrow on map, which always points to the destination

2011-07-18 Thread rich friedel
You are wanting to research augmented reality. http://www.google.com/#q=android+development+augmented+reality -- 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: clearing notification

2011-07-18 Thread kamiseq
ok, in on destroy im sending new Notification with different icon (ok this wasnt obvious from the code I posted before): final Notification notification = new Notification(icon, notify_title, when); //IM SURE THE ICON IS CHANGED final PendingIntent contentIntent = PendingIntent.getActivity(this,

[android-developers] why subview doesn`t appear

2011-07-18 Thread asdf
i create a custom viewgroup extends ViewGroup,and only override onLayout method. in the method, i call layout method for subview.And them call addView method of the new created viewgroup, and add a subview. but the subview doesn`t appear. when i check it using hierarchyviewer, i saw the mTop,

[android-developers] How to stop scrolling TabWidget with keyboard ?

2011-07-18 Thread imran ali
Hi All, In one on my application i am using TabWidget, inside activity i have EditText when i have been clicking on EditText then TabWidget has also been scrolling up with keyboard that i don't want this. Note:- I observed when i have been using ScrollView in Activity then i am facing problem,

Re: [android-developers] Re: ActionBar/Mode Style Regressions with SDK 12r2 and 13r1

2011-07-18 Thread dmitry.lukas...@gmail.com
How to change android:searchViewSearchIcon now? -- 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] How to check memory leaks

2011-07-18 Thread Suraj Gopalakrishnan
Hi All, I want to know if there is any way by which i can find out the memory leaks(heap dump) in eclipse? I have tried Memory Analyzer Tool (eclipse plug-in).. But I am having hard time in figuring out what to do.. Does anyone know any simpler method? -- Best Regards, Suraj Gopalakrishnan --

[android-developers] Need a slight clarification on Licensing Library instructions

2011-07-18 Thread Jim Graham
Referring to my previous post on this issue, there is a sentence in the Developer's Guide document on application licensing that points people to a section called . That caused me, at least, a bit of confusion. I'm past that now. I finally saw (I'd read the text before, but the critical bits

Re: [android-developers] Re: ActionBar/Mode Style Regressions with SDK 12r2 and 13r1

2011-07-18 Thread dmitry.lukas...@gmail.com
I've found only one way to change default search view icon:-) But this is terrible solution SearchView sv = new SearchView(mActivity); sv.setOnQueryTextListener(mOnSearchQueryTextListener); menuItemSearch.setActionView(sv); searchViewChangeHack(sv); private static int sViewIndex = 0;

Re: [android-developers] Re: clearing notification

2011-07-18 Thread TreKing
On Mon, Jul 18, 2011 at 7:53 AM, kamiseq kami...@gmail.com wrote: and I can see this new icon, but when I click on the notification when I expand status bar it is not clearing itself :/ this is weird right? Shouldn't make a difference, but get rid of the alert once flag and just use the auto

[android-developers] Re: uevent handling in user-space

2011-07-18 Thread Hemant
Hi, Thanks for your reply. Well I want to write in C because I know only that.. I wrote a small program based on netlink to receive uevent and it works fine. But now I am a bit confused because I am getting all events and not the only one. How can I parse an uevent message? Is there any data

[android-developers] SDK Tools r12 causing aapt to fail

2011-07-18 Thread William Ferguson
Since updating my SDK to r12, an existing project (with zero code changes) now fails during aapt generation with: [INFO] C:\Dev\Android-sdk\platform-tools\aapt.exe [package, -m, -J, C: \Source\android\Jumblee\target\generated-sources\r, -M, C:\Source

Re: [android-developers] Role of the Compatibility Library?

2011-07-18 Thread TreKing
On Mon, Jul 18, 2011 at 4:31 AM, Romain Guy romain...@android.com wrote: It's also for cool APIs that can be useful to all app developers but that we don't necessarily want to add to the platform. Out of curiosity, why would you not want to add cool APIs that can be useful to all app

Re: [android-developers] regarding Google Maps

2011-07-18 Thread TreKing
On Mon, Jul 18, 2011 at 5:13 AM, nageswara rao rajana nagu.raj...@gmail.com wrote: The problem is google maps is very slow. So please suggest me the issue. I suggest the issue is you have not optimized your code. Try that.

[android-developers] current location in google map using android

2011-07-18 Thread arun kumar
Hello all, i am developing one application using google map. i am struggling to display current location in google map. i refer google all coding have using static lat and lang or DDMS. i want without using static lat and lang and DDMS. Please help me -- You received this message because you

[android-developers] Re: NFC Secure Element

2011-07-18 Thread Fernando Miguélez Palomo
Hi Nemik, I just applied your patches to 2.3.4_r1 version (I had to change them a little bit) but card emulation does not seem to work (an external reader detects nothing). Could you please tell us what tag of AOSP gingerbread did you use? Thanks -- You received this message because you are

Re: [android-developers] current location in google map using android

2011-07-18 Thread TreKing
On Mon, Jul 18, 2011 at 10:18 AM, arun kumar hariarun2...@gmail.com wrote: Please help me Google MyLocationOverlay - TreKing http://sites.google.com/site/rezmobileapps/treking - Chicago transit

Re: [android-developers] Fwd: image view listener

2011-07-18 Thread arun kumar
Thankyou gaurav now its working for 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@googlegroups.com To unsubscribe from this group, send email to

Re: [android-developers] Draw an arrow on map, which always points to the destination

2011-07-18 Thread TreKing
On Mon, Jul 18, 2011 at 7:25 AM, crem bernd.warm...@gmail.com wrote: Whats the common approach for this? Math, particularly trigonometry. - TreKing

Re: [android-developers] Re: Checkbox bug?

2011-07-18 Thread Simon Platten
Thank you, will do! On 18/07/2011 9:21 AM, Ali Chousein wrote: Make a bug entry here: http://code.google.com/p/android/issues/list -- Ali Chousein Geo-Filtered Assistant http://geo-filtered-assistant.blogspot.com/ Cisco Android marketplace (Chosen for Cisco Cius)

[android-developers] Re: NFC Secure Element

2011-07-18 Thread nemik
Fernando, the patches were against 2.3.1 or 2.3.2 I believe, a long time ago (relatively). I have not had a chance to revisit this but I'm fairly sure it will not work on 2.3.4+. I'm sure some of the header defines have changed as well but try to re- enable the ones I had if they exist? Good

[android-developers] Editview when click an listview has to appear in that layout only.......

2011-07-18 Thread arun kumar
HI am having an textview placed at the bottom of the layout...when i click on the projects an list has to appear (demo projects,sem projects,All projects)similarly when i click on the seminar another list has to appear related to seminar II defined textview in the xml file

[android-developers] Re: NFC Secure Element

2011-07-18 Thread Fernando Miguélez Palomo
Yes I know. I revised them manually and adapted to 2.3.4_r1. However I must be missing something. I see the Secure Element SMX selected, the embedded Mifare card is not detected by means of external readers. The external reader detects a memory card but it can not read the CSN (UID). It seems

[android-developers] Importing JDBC driver

2011-07-18 Thread Boozel
Hi I'm trying to import the sql server jdbc driver into my project. I right clicked my project and clicked import selected the sqljdbc4.jar file and imported it into the src directory. My code is below but when it gets to Class.forName(driver).newInstance(); it gives an error

[android-developers] How to develop search functionality like search app

2011-07-18 Thread Narendra Bagade
-- Regards, Narendra . -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to android-developers+unsubscr...@googlegroups.com

[android-developers] Re: Importing JDBC driver

2011-07-18 Thread Boozel
Never mind i found a solution here http://gerardnico.com/wiki/ide/eclipse/oracle 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 from this group,

[android-developers] Re: NFC Secure Element

2011-07-18 Thread Fernando Miguélez Palomo
For convenience I post the filtered NFC related I can see after initialization. As I said the card is detected on reader but only after phone restarts (however it can not read any UID). If I approach it latter it is not recognized. 07-18 17:01:54.800: DEBUG/NFC JNI(283): NFC Service : loading

Re: [android-developers] Role of the Compatibility Library?

2011-07-18 Thread Romain Guy
Because APIs that we integrate in the platform must be forever maintained and cannot be changed ever. This adds burden to the Android team and it's less flexible for you because we need to maintain backward compatibility. It also adds bloat to the platform. A good example of a widget that should

[android-developers] Samsung Galaxy Tab as a development target?

2011-07-18 Thread petter
I was planning on getting a Galaxy Tab as a development target for testing my apps etc. But I noticed that the device lacks a USB connector. How can I connect to the Tab using adb? Can I run adb over WLAN? -- You received this message because you are subscribed to the Google Groups Android

Re: [android-developers] Role of the Compatibility Library?

2011-07-18 Thread TreKing
Makes sense - thanks! - TreKing http://sites.google.com/site/rezmobileapps/treking - Chicago transit tracking app for Android-powered devices -- You received this message because you are subscribed

[android-developers] Re: SDK Tools r12 causing aapt to fail

2011-07-18 Thread teo2k
Same here... Can't figure out why On Jul 18, 3:16 pm, William Ferguson william.ferguson...@gmail.com wrote: Since updating my SDK to r12, an existing project (with zero code changes) now fails during aapt generation with: [INFO] C:\Dev\Android-sdk\platform-tools\aapt.exe [package, -m, -J,

[android-developers] Re: How to know what internal process runs an application

2011-07-18 Thread elDoudou
Thank you Diane. I may have a problem with my design, but if I'm wrong, I'd be delighted to be well guided. I would like my application to initialize a certain way when it is started with an Activity (for instance, I want to set up some caching stuff), whereas when launched via a Service, I do

[android-developers] Re: Samsung Galaxy Tab as a development target?

2011-07-18 Thread Chrystian Vieyra
You can use the Galaxy tab as a development target, simply plug in the supplied cable to the computer. -- 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] Re: clearing notification

2011-07-18 Thread kamiseq
well, it seems that if I send notification with ID (ongoing ID = 0) Notification.FLAG_ONGOING_EVENT | Notification.FLAG_FOREGROUND_SERVICE then it will stay forever there;] and if I send other notifications to the same ID (0), icon and intents will update but flags stay :/ I dont know if this is

[android-developers] Re: Samsung Galaxy Tab as a development target?

2011-07-18 Thread petter
Thank you for your reply. I was not aware that it came with a cable? I read a rating of the tablet somewhere and somebody said one of the cons was the lack of a USB port. On Jul 18, 8:26 pm, Chrystian Vieyra chrys.vie...@gmail.com wrote: You can use the Galaxy tab as a development target,

[android-developers] Does anyone know if the Zoosh (naratte.com) application can do bluetooth paing?

2011-07-18 Thread Chuck
Hi, Has anyone gotten their hands on the Zoosh (www.naratte.com) application, its looks like it's similar to Bump (www.bu.mp) but it used Ultrasound to replace NFC? Can it be used as a front end to pair Bluetooth communications or is it a payment pathway only? Naratte isn't saying much other

[android-developers] Re: Samsung Galaxy Tab as a development target?

2011-07-18 Thread Chrystian Vieyra
http://www.amazon.com/gp/customer-media/product-gallery/B00519RW1U/ref=cm_ciu_pdp_images_0?ie=UTF8index=0 -- 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

Re: [android-developers] Re: SDK Tools r12 causing aapt to fail

2011-07-18 Thread Kostya Vasilyev
It's this parent reference here: style name=CustomWindowTitle parent=android:WindowTitle The canonical syntax, I believe, would be: style name=CustomWindowTitle parent=@android:style/WindowTitle -- Kostya 18.07.2011 22:03, teo2k пишет: Same here... Can't figure out why On Jul 18, 3:16

Re: [android-developers] SDK Tools r12 causing aapt to fail

2011-07-18 Thread Xavier Ducrohet
It's likely not r12 that is the problem but the new platform-tools (ie new aapt) that shipped with 3.2 This is not normal syntax, although aapt has supported it in the past. It is possible (I'm not sure, aapt is handled by the framework team) this is now unsupported. Try changing it to

[android-developers] android droid3 different sdcard filesystem?

2011-07-18 Thread guruk
I developed one year ago an app that just does write a backup on the sdcard root folder. that worked fine, till i get now complains that the new droid3 does save all files into a folder /sdcard on the sdcard itself. Now it looks like my app cant handle that. It does say write successful but

[android-developers] Re: Samsung Galaxy Tab as a development target?

2011-07-18 Thread petter
Again thanks. Seems like there is a docking to USB connector which comes with it. On Jul 18, 8:41 pm, Chrystian Vieyra chrys.vie...@gmail.com wrote: http://www.amazon.com/gp/customer-media/product-gallery/B00519RW1U/re... -- You received this message because you are subscribed to the Google

[android-developers] Re: Samsung Galaxy Tab as a development target?

2011-07-18 Thread petter
BTW, is it easy to replace the US power connector with an European one? On most laptop chargers one can simply replace entire cord to the charger. Is this possible with the Galaxy Tab 10.1? On Jul 18, 8:41 pm, Chrystian Vieyra chrys.vie...@gmail.com wrote:

[android-developers] Re: Samsung Galaxy Tab as a development target?

2011-07-18 Thread Streets Of Boston
Just use your charging cable. It functions as an USB cable as well. The proprietary plug that is on the Galaxy Tab 101. does support USB and HDMI interface. The charger-cable (the one that plugs into the small charging station) is a USB cable as well. You can buy additional ones from Samsung

[android-developers] Re: SharedPreferences update issue

2011-07-18 Thread Hal Harrison
Buried in the doc on class Activity is this paragraph. To use preferences that are shared across multiple application components (activities, receivers, services, providers), you can use the underlying Context.getSharedPreferences() method to retrieve a preferences object stored under a specific

[android-developers] auto update android apk

2011-07-18 Thread Ahmed
iam developing an android application that needs to auto update (upgrade) from Android market: now i got stuck in 2 problems: 1. after successfully upload my application to android market,and i want to add a code to periodicity check for update, but how i can use Java code to get the version code

[android-developers] Can I signing the GMS(Google mobile services) package with my private key?

2011-07-18 Thread Alex
I use the GMS r3 for our product(base on Android 2.3.4), when I boot up the phone, the Google Partner(GooglePartnerSetup.apk) report a force close. But if I use our private key to signing this GooglePartnerSetup.apk, the force close will not appear. So my question is: Because I am not the author

[android-developers] Help me with scrollview

2011-07-18 Thread Reis
hi, could somebody help me, please? :] Do you remember what happen when there are a listview that contains some icons (about three icons), and I touch the screen and scrollup or scrolldown, so the list (of icons) moves and following my finger. So I remove my finger from screen and the list back

[android-developers] App causing Droid Only Crashes

2011-07-18 Thread Bubbleware Technology
If someone downloads my app which is a home screen replacement on a droid x or droid 3, they get incredibly strange behavior. They do not get a home screen chooser and then phone reboots itself and then they only get the notification bar. The only way out of this is then a hard reset. This is

[android-developers] Re: Bug while unzipping file

2011-07-18 Thread Hugo M
Nobody had a problem related with this strange behavior in Android? :S I forgot to mention that I'm using Ubuntu 11.04 and Eclipse for developing. 2011/7/17 Hugo M. ham1...@gmail.com I have a problem when I try to unzip a file with Android SDK. With a similar code in Java SDK 6 this doesn't

[android-developers] Error starting android emulator

2011-07-18 Thread qia li
Hi guys, I am trying to run my first android program on an emulator. But not sure why there is error even though I follow the exact procedures as the youtube tutorials. The error msg: invalid command-line parameter: Files. Hint: use '@foo' to launch a virtual device named 'foo'. please use -help

[android-developers] Help me with scrollview

2011-07-18 Thread Eduardo Reis
hi, could somebody help me, please? :] Do you remember what happen when there are a listview that contains some icons (about three icons), and I touch the screen and scrollup or scrolldown, so the list (of icons) moves and following my finger. So I remove my finger from screen and the list back

[android-developers] open nfc installation

2011-07-18 Thread Mohamed Ramadan
HI, I had two problems when I try to connect the simulator with the connection Center in open nfc 1-ccrouter.dll file not found in the connection center folder 2-an error message Warning:No provider for client source:***.***.***.***(ip);LINUX;NFC controller

[android-developers] 3D maps

2011-07-18 Thread Deeraf
I use google maps to display users' current position. Now i want it to display on 3d maps. I got frustrated in search of 3d map view control etc... -- 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 get phone's flip state?

2011-07-18 Thread babycoo...@hotmail.com
Hi, in my application, I want to get phone's flip state. i.e. Closed or Opened. How can I do that? Thanks. Qin. -- 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] Get the PDP activation and deactivation info.

2011-07-18 Thread ashokm
Hi all, I want to get whether PDP activation is successful or failure? Please let me know any api available to get this information. Thanks , ashok -- 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] Eclipse with ADT goes Not Responding

2011-07-18 Thread Mate Gulyas
Hi! I upgraded to Indigo, downloaded the ADT plugin a few days ago. Now sometimes I try to build my project, it goes Not Responding, and the build process is stuck at 55%. I can't do anything bit kill it with task manager. This happens about every second, third build now. Usually there is

[android-developers] Limiting licensed content on Android Apps in code?

2011-07-18 Thread Bhav
Hi All, I am developing / working on an app which provides licensed content on a subscription basis. Unfortunately the content I have has a restriction - I can only provide the subscription content on HTC Samsung Android Devices as the content provider has partnered/licensed agreements with these

[android-developers] broadcast partial of a SAR (Segmentation and Re-Assembly) long SMS immediately before all parts been received reassembled back to original one long message

2011-07-18 Thread Eric
Hi My application registered to receive SMS broadcast message from system. However, we noticed that for a SAR (Segmentation and Re- assembly) SMS (a.k.a. concatenated long message), the broadcast was sent immediately before all parts received and reassembled back to original long message .

[android-developers] Accessory developers corner

2011-07-18 Thread nimbusgb
Is there anywhere specific for open accessory developers to hang out? I'm keen on finding out when the Bluetooth communications side of things will be released. having to get handsets to use 2.3.4 to implement OA over USB strikes me as being a little 'cart before horse'. Surely releasing a BT

[android-developers] Access a list of local drawables

2011-07-18 Thread can telkenaroglu
Does anybody know how I may access the list of files under drawables folder in my project list/drawable. So I may generate a main.xml using the names of these files and add varying number of files to my viewflipper. Thanks -- You received this message because you are subscribed to the Google

R: Re: [android-developers] Re: LVL behavior on client side license validity check for free apps

2011-07-18 Thread Fabio Da Soghe
Il giorno venerdì 4 febbraio 2011 18:44:45 UTC+1, Trevor Johns ha scritto: (Marco: This change was made very late in the development of the license service. For a long time during development, it was indeed possible to use licensing with free apps. The reference you found in the docs was

[android-developers] Bug while unzipping file

2011-07-18 Thread Hugo M.
I have a problem when I try to unzip a file with Android SDK. With a similar code in Java SDK 6 this doesn't happen! It works well in Java. This is the code I use to read the zip: public void unzip() { try { float time = System.currentTimeMillis(); ZipInputStream zin = new

[android-developers] First Android program

2011-07-18 Thread qia li
Hi Guys, I am setting up the android development environment by following the tutorial on youtube. However, when i tried to run my first program, errors occur and i am not sure why. could anyone advise? error msg as follow: invalid command-line parameter: Files. Hint: use '@foo' to launch a

[android-developers] Old signing problem but no solutions

2011-07-18 Thread Frank Ahearn
I am aware there are almost identical posts on here and Google but see no answers, therefore asking again in case any have come up since. I made a very small change to my app icon and on upload got The apk must be signed with the same certificates as the previous version It is the same. The

[android-developers] Re: android droid3 different sdcard filesystem?

2011-07-18 Thread guruk
here some of my code as example: File root = Environment.getExternalStorageDirectory(); if (root.canWrite()) { File gpxfile = new File(root, DATABASE_TABLE + .myd); FileWriter gpxwriter = new FileWriter(gpxfile); BufferedWriter out = new BufferedWriter(gpxwriter); // later i write for

Re: [android-developers] auto update android apk

2011-07-18 Thread TreKing
On Sun, Jul 17, 2011 at 9:22 PM, Ahmed a.alsaya...@gmail.com wrote: 1. after successfully upload my application to android market,and i want to add a code to periodicity check for update, but how i can use Java code to get the version code of my application on android market? Store your

Re: [android-developers] Old signing problem but no solutions

2011-07-18 Thread TreKing
On Sun, Jul 17, 2011 at 9:32 AM, Frank Ahearn gateed...@gmail.com wrote: Any new thoughts on what seems to be an old problem would be most welcome. Do a re-export and also try clearing your browser cache and see it if that helps.

Re: [android-developers] 3D maps

2011-07-18 Thread TreKing
On Sun, Jul 17, 2011 at 12:00 PM, Deeraf dee.dee...@gmail.com wrote: Now i want it to display on 3d maps. I got frustrated in search of 3d map view control etc... What kind of answer are you expecting here ... ?

[android-developers] Emulator connectivity

2011-07-18 Thread kypriakos
Hi all, I have been working with real devices for a while and returning back to emulators now. I am able to port forward the iJetty web server (which is running on 10.0.2.15:8080) and I can now access it from the browser running on the local machine using localhost:8080. But to be able to see

[android-developers] Re: First Android program

2011-07-18 Thread Kumar Bibek
Check this thread. http://stackoverflow.com/questions/3492676/invalid-command-line-parameter-when-android-execution On Jul 17, 5:37 pm, qia li allenli...@gmail.com wrote: Hi Guys, I am setting up the android development environment by following the tutorial on youtube. However, when i tried

[android-developers] Re: How to get phone's flip state?

2011-07-18 Thread Kumar Bibek
What exactly do you mean by closed and open? On Jul 18, 1:35 pm, babycoo...@hotmail.com babycoo...@hotmail.com wrote: Hi, in my application, I want to get phone's flip state. i.e. Closed or Opened. How can I do that? Thanks. Qin. -- You received this message because you are subscribed to

Re: [android-developers] Limiting licensed content on Android Apps in code?

2011-07-18 Thread TreKing
On Mon, Jul 18, 2011 at 4:26 AM, Bhav bzmis...@gmail.com wrote: 1) Is there any way I can restrict the 'premium content' within the application on specific branded devices? For example, if a Motorola user tries to access the content from within the app, is it possible to detect the make/model

[android-developers] Re: Samsung Galaxy Tab as a development target?

2011-07-18 Thread petter
OK great, thanks for the explanation. That means that I've probably have several power connectors already, both US and European ones... On Jul 18, 9:05 pm, Streets Of Boston flyingdutc...@gmail.com wrote: Just use your charging cable. It functions as an USB cable as well. The proprietary

[android-developers] Re: Samsung Galaxy Tab as a development target?

2011-07-18 Thread Streets Of Boston
Here is a pic of the charger (charging station with the USB/Charging cable) http://www.samsung.com/us/mobile/galaxy-tab-accessories/ETA-P10JBEGSTA I think that the charging station would accept both 110volts and 220volts (the link states that it is a universal charger), but i'm not sure --

[android-developers] Using assets / permissions from library projects

2011-07-18 Thread Dale Harvey
I am currently working on an application that is packaged as an android library, the library contains some source files as well as some binaries delivered in the assets folder, additionally some permissions are required to run the library. Currently developers must create their own project and

[android-developers] Re: How to lock current orientation at runtime?

2011-07-18 Thread Indicator Veritatis
What? Why would a restart of your Activity be a problem while waiting for an HTTP response? You DO have the HTTP response in a separate thread and Service, don't you? On Jul 16, 3:41 pm, Brad bradfull...@gmail.com wrote: Hi, I'm trying to lock my activity to the current orientation to prevent

[android-developers] Re: Android 2.1 Emulator proxy settings

2011-07-18 Thread Zoon
I'm not having luck using -http-proxy on tools r12 for some reason. Had to revert to r11. Is anyone else having this problem? On Jul 12, 7:44 am, superprogrammer jkerns...@gmail.com wrote: I need to access the internet on the emulator for an app. How can i change theproxysettings in telKila to

[android-developers] Re: SDK Tools r12 causing aapt to fail

2011-07-18 Thread teo2k
In my case the syntax is correct, but I still see the error... style name=LCIAlertDialog parent=@android:style/AlertDialog item name=android:fullDark@drawable/popup_full_dark/item item name=android:topDark@drawable/popup_top_dark/item item

  1   2   >