[android-developers] is there anyone using spotify?

2011-04-28 Thread Hitendrasinh Gohil
hi, In spotify there are offline playlist mode in which it stores songs on sdcard in number of chunks.and if we select a particular chunk with renamed extension .mp3 it cant be played even with spotify. so can anyone tell me how it works? is there any encryption or any game with id3 header or

[android-developers] Re: javax.xml.bind.annotation.XmlAccessType and Android

2011-04-28 Thread Robert Massaioli
I know it has been a while but in case you wanted a JAXB replacement in Android you should use the Simple library: http://massaioli.homelinux.com/wordpress/2011/04/21/simple-xml-in-android-1-5-and-up/ -- You received this message because you are subscribed to the Google Groups Android

[android-developers] Re: car dock mode

2011-04-28 Thread mort
On 27 Apr., 21:24, Dianne Hackborn hack...@android.com wrote: Um. This API was introduced in Froyo/2.2 (that is API 8). Oops, sorry, mixed up the version numbers... :o ACTION_DOCK_EVENT is about the device being placed in a dock.  Calling that API puts the device in to car mode, but that

[android-developers] GMaps launching problem

2011-04-28 Thread kaushik p
on click of a button i am launching googlemaps , on which the current location of the user is present . But my application crashes each time i click the button . Please help me solve this problem public void launchmaps() { Intent i = new Intent(this,com.kaushik.android.ShowMap.class);

Re: [android-developers] Phone for development

2011-04-28 Thread Pepijn Van Eeckhoudt
I agree with that review. As I already said in the set of devices I have available, that one's my 'favorite'. A couple of my colleagues have one for personal use as well and are very happy with it. BTW, there's also a revamped 'S' version of the desire which is a gingerbread device. It's

[android-developers] Re: Android: Get Recently used Apps

2011-04-28 Thread Goodwin
Add the following. uses-permission android:name=android.permission.GET_TASKS/uses- permission On 4月27日, 下午9时14分, Simon carep...@gmail.com wrote: Hello! I need a little bit help getting information about the last lets say 5 application that was opened/used. ActivityManager m =

[android-developers] Re: How is your app selling on the Amazon Appstore?

2011-04-28 Thread Droid
My app was tested in India (I knew this cos of an inn app widget giving me locations) and three weeks later appeared in Amazon market. It is a free app and gets hardly any downloads or feedback whereas in google market it get loads of downloads and feedback. Not impressed with Amazon app store

[android-developers] Missing packages

2011-04-28 Thread Igor
Hi, I'm missing these packages: com.android.common.speech com.android.common.userhappiness Anybody know wher eI can find them? Thanks in advanced -- 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] BitmapSize exceeds VM budget out of memory error

2011-04-28 Thread Droid
I use images that often me this error: BitmapSize exceeds VM budget out of memory error. It depends on the device Can I check my devices VM budget programmatically or in technical specs? I have no idea which devices have good VM budgets and which have low budgets, so I cannot target. At

[android-developers] Re: How is your app selling on the Amazon Appstore?

2011-04-28 Thread blindfold
Similar here. My free app gets between 100 and 200 downloads a day on Android Market, and only about 1 per day via Amazon Appstore. On Apr 28, 9:06 am, Droid rod...@gmail.com wrote: My app was tested in India (I knew this cos of an inn app widget giving me locations) and three weeks later

[android-developers] why can't draw text with OpenGL!!!

2011-04-28 Thread a a
Nothing can see with following code which come from http://stackoverflow.com/questions/1339136/draw-text-in-opengl-es-android public void drawTag() { Bitmap bg = Bitmap.createBitmap(256, 256, Bitmap.Config.ARGB_); bg.eraseColor(0); Canvas canvas = new Canvas(bg);

[android-developers] Re: why can't draw text with OpenGL!!!

2011-04-28 Thread a a
2011/4/28 a a harvey.a...@gmail.com: Nothing can see with following code which come from http://stackoverflow.com/questions/1339136/draw-text-in-opengl-es-android (at 16th floor)    public void drawTag() {        Bitmap bg = Bitmap.createBitmap(256, 256, Bitmap.Config.ARGB_);        

Re: [android-developers] Re: Fragmentation-resistant product design

2011-04-28 Thread Bob Kerns
I'm not sure we're not talking past each other. Let me make my case against using device identity a bit more clear, and see if you don't agree. Let's say we have a device, the iDroidMax, which has the nasty habit of the screen cracking, if you perchance display a certain icon, an apple. You're

[android-developers] Re: How is your app selling on the Amazon Appstore?

2011-04-28 Thread Zsolt Vasvari
I have to add, I have both a free and a paid app on the Android Market, but I am only offering the paid one on the Amazon Market. Similar here. My free app gets between 100 and 200 downloads a day on Android Market, and only about 1 per day via Amazon Appstore. -- You received this message

Re: [android-developers] How is your app selling on the Amazon Appstore?

2011-04-28 Thread Nikolay Elenkov
On Thu, Apr 28, 2011 at 2:52 PM, Nikolay Elenkov nikolay.elen...@gmail.com wrote: On Thu, Apr 28, 2011 at 2:16 PM, Zsolt Vasvari zvasv...@gmail.com wrote: Mine started out very slow, but has picked up some steam lately.  It's still too few downloads to establish a pattern, but it's something

[android-developers] Re: How to prevent my application from being killed?

2011-04-28 Thread Ali Chousein
a) Don't do time consuming calculations in the main thread. If you do, the man thread gets blocked and your application will be killed by the framework. If you need to do time consuming calculations, use threads for that purpose. If you don't block the main thread, the framework is not going to

Re: [android-developers] Re: Fragmentation-resistant product design

2011-04-28 Thread Bob Kerns
Thanks; I was seriously considering starting something, but won't have time for a few days, so I'm glad you dove in. I'd be pleased if you added me to the project. I do have one little quibble -- 'defect'. While detecting defects is perhaps the most important use case, I don't think we want to

[android-developers] Re: Update Contacts

2011-04-28 Thread Ali Chousein
Can you post your code? -- 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: Update Contacts

2011-04-28 Thread Stefan S
_context.getContentResolver().notifyChange( ContactsContract.Contacts.CONTENT_URI, null); ArrayListContentProviderOperation ops = new ArrayListContentProviderOperation(); int nIndex = ops.size();

Re: [android-developers] Button code

2011-04-28 Thread Marcin Orlowski
Create object of Button class and add it to your layout. All is in documentation. All you need it is to read it. Regards, Marcin Orlowski *Tray Agenda http://bit.ly/trayagenda* - keep you daily schedule handy... *Date In Tray* http://bit.ly/dateintraypro - current date at glance... WebnetMobile

[android-developers] Acer Iconia A500

2011-04-28 Thread Marcin Orlowski
Hi, Anyone is using Acer's Iconia A500 for development and want to shares pro/cons of that model on that subject? PS: I know specs are not stunning - I do not care - it have to be cheapest one available with Honeycomb that works. And Transformer seems to be out of stock everywhere I checked, so

[android-developers] Re: Menus for tabs do not show in action bar

2011-04-28 Thread Steve
An good workaround is described in the docs, under User Interface, Creating Menus. This will allow me to implement dynamic menus in TabActivity. On Android 2.3 and lower, the system calls onPrepareOptionsMenu() each time the user opens the Options Menu. On Android 3.0 and higher, you must call

Re: [android-developers] CheckedTextView and filtering of list not working well together

2011-04-28 Thread Lowell Kirsh
Ok, thanks. Turns out I didn't have to hook into the filtering at all. As you said, I added a selected flag to my backing model and all works well 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] Re: How to prevent my application from being killed?

2011-04-28 Thread Krischik Martin
On 27 Apr., 05:35, J J andde...@gmail.com wrote: a) How to prevent my application from being killed? or b) How to restart my application automatically after it is killed or force stopped? Care to tell me which app you are working on so I can make sure that I never ever download it. Because

[android-developers] Re: Problem Sony Xperia Neo Camera zoom-support = false

2011-04-28 Thread Johan Abramsson
Hi, Your phone does give you a correct answer. Zoom in the Camera API is not supported right now. It will be supoprted in the 4.0.x.y.z Version of the phone software which will be released by SonyEricsson during late Q2 according to the present plans. Kind regards /Johan Sony Ericsson

[android-developers] Re: Button code

2011-04-28 Thread Zsolt Vasvari
Me no likey docy. On Apr 28, 5:03 pm, Marcin Orlowski webnet.andr...@gmail.com wrote: Create object of Button class and add it to your layout. All is in documentation. All you need it is to read it. Regards, Marcin Orlowski *Tray Agenda http://bit.ly/trayagenda* - keep you daily schedule

[android-developers] Https connection to webservice

2011-04-28 Thread elioncho
Hello guys, I'm trying to connect to a webservice through my android application. In which order should I add these certs to my app's keystore? 1 Subject CN=*.heroku.com, O=Heroku, Inc., L=San Francisco, ST=California, C=US Issuer CN=DigiCert High Assurance CA-3, OU=www.digicert.com,

[android-developers] Re: Acer Iconia A500

2011-04-28 Thread Zsolt Vasvari
It can't be any worse than using the emulator -- that's for sure. On Apr 28, 5:06 pm, Marcin Orlowski webnet.andr...@gmail.com wrote: Hi, Anyone is using Acer's Iconia A500 for development and want to shares pro/cons of that model on that subject? PS: I know specs are not stunning - I do

[android-developers] Non-US buyers still charged in US$.

2011-04-28 Thread Zsolt Vasvari
I have prices set in all the different currencies supported by the Android Market, but still, frequently, I got buyers who get charged in US$ even though they are in a country that has a supported currency. It seems to happen the most often with UK buyers. With this, I am losing quite a bit of

[android-developers] Re: Menus for tabs do not show in action bar

2011-04-28 Thread Zsolt Vasvari
Here's the class (basically) I use to safely call invalidateOptionsMenu() on Honeycomb or pre-Honeycomb: public class SDKLevel11TabletBridge { private static SDKLevel11TabletInterface intf; private static boolean intfLoaded; private interface

Re: [android-developers] how to use scrollview in java code.

2011-04-28 Thread Mark Murphy
On Wed, Apr 27, 2011 at 4:39 PM, rishabh agrawal android.rish...@gmail.com wrote: I want to know that how i use the scrollview in java code Can you be more specific? What is use? -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy

[android-developers] Mapactivity

2011-04-28 Thread kaushik p
hi all , In my application i am trying to start a mapactivity from another activity . I have been searching every where , i dint get correct information . Please help me , Is it possible to intent mapactivity from an existing activity ? -- ThanksRegards Kaushik Pendurthi

[android-developers] Notify when media file is inserted in MediaStore

2011-04-28 Thread manigault
Hi all. How can i be notified when new media file is inserted into media store. For example when is downloaded from the net. I found some posts on this topic but they are not very helpful. http://stackoverflow.com/questions/230643/android-api-for-detecting-new-media-from-inbuilt-camera-mic

[android-developers] Re: First Application Development

2011-04-28 Thread arpit
this is about sending SMS.. so help me out now..this is regarding my college project.. On Apr 27, 10:05 pm, Peter Webb r.peter.w...@gmail.com wrote: Messages? You mean email? You mean instant messaging? You mean SMS? You mean via bluetooth? You mean via direct sockets connections? You mean

Re: [android-developers] Mapactivity

2011-04-28 Thread Mark Murphy
You call startActivity() on a MapActivity the same as you would with any other Activity. On Thu, Apr 28, 2011 at 6:25 AM, kaushik p kaushiks...@gmail.com wrote: hi all , In my application i am trying to start a mapactivity from another activity . I have been searching every where , i dint get

[android-developers] Permission Denial at Receiving SMS

2011-04-28 Thread Dario Enser
Hi all... Im trying to make an application that receives SMS, but i can't do it. I tried a lot of piece of codes that it supposed to works fine but all of them are from 2008, 2009 or 2010... It seems to none of them, works now. And Im very stucked and frustrated. I dont know what can i do. I

[android-developers] cURL on Android vs C calls to Java

2011-04-28 Thread Jim
My existing native 'c' code uses libcurl to make http requests. I'd like to continue to make these calls from the native code. Option 1 - port curl to android. I have had no luck with this so far. Various people claim to have done it, but I can't figure it out. Some people said you have to

[android-developers] problem for send sms

2011-04-28 Thread jaafar zbeiba
I realize a sublist for example when a user clicks on an available balance message will be sent to the server in the background but the problem it gives me the sms application appel function if (position==4){ Boitedialog.bloc=8; i1 =new Intent(this, EnvoiSms.class);

[android-developers] Android Developer console not updating

2011-04-28 Thread AI Factory
It is a source of frustration that the Android market Console is erratic in its updating. For example one of our apps has seen no updates for download counts for 10 days now, but is rapidly climbing the charts, so is clearly doing well. The new statistics button provided shows the downloads are

[android-developers] Audio input funciton via 3.5mm / headphone jack?

2011-04-28 Thread Drew
How do I receive input from the audio jack (from a headset with built in microphone)? Is it auto switched when the headset is inserted? Is it a function of HeadsetObserver.java? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this

[android-developers] Custom view and horizontal scrolling

2011-04-28 Thread yasir perwez
I am facing two issue here. 1. If I create HorizontalScrollView and add custom view using HorizontalScrollView.addview() the application did not crash but my custom view is not display. It onDraw never gets called. 2. In other approach if I use XML and specify my custom view as child of

[android-developers] How to run application at startup (Java app)

2011-04-28 Thread dani maoz
Hi I have created an APK of java application and i have 2 questions 1. After APK installation what is the installed directory where application located 2. I would like to run the application at boot time , how can i do that thank you -- You received this message because you are subscribed to the

[android-developers] I'm trying to build Library(libwebcore.so) that works on emulator and target(Nexus s).

2011-04-28 Thread JangRok LEe
Hi. I'm trying to build a library(customized libwebcore.so) which work on not only emulator but also target(Nexus s). If I build with lunch generic option it works on emulator but nexus s occur below linking error. 04-28 18:02:49.900: ERROR/AndroidRuntime(12194): Caused by:

[android-developers] Monkeyrunner extension library

2011-04-28 Thread Eing
FYI, for monkeyrunner users, check out androidlib.py which is an extension to the library - https://github.com/eing/moet/blob/master/common/androidlib.py moet usage : moet -d android [-os os] [-ic] [-res resolution] [-ic] [-s serial] [file] For interactive mode, use -i For image capture

[android-developers] Missing USB driver for WiFi Galaxy Tab?

2011-04-28 Thread UdneyHay
Since the android-beginners forum is apparently no more, I'm hoping someone here might help me. If not please redirect to an appropriate forum. I'm attempting to test an android app on my brand new wifi Tab. The app is working in the emulator but neither adb nor the SDK manager can find the Tab.

[android-developers] Re: problem for send sms

2011-04-28 Thread jaafar zbeiba
help me please -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to android-developers+unsubscr...@googlegroups.com For more

[android-developers] openning PDF with password

2011-04-28 Thread Marco Antonio Abreu
Hello guys, I'm creating an application that needs to open some PDFs, but for copyright reasons, they have password. Is there a way to open the PDFs sending the password in the Intent, something like it.putExtra (password , 123456) ? Thanks. []'s -- Marco Antonio Abreu mabreu...@gmail.com

[android-developers] problem for send sms

2011-04-28 Thread jaafar zbeiba
I realize a sublist for example when a user clicks on an available balance message will be sent to the server in the background but the problem it gives me the sms application -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this

[android-developers] Maven and Emma

2011-04-28 Thread Jose H. Espinosa
Hi all, I am trying to run emma code coverage inside the android simulator using maven. This are the steps that I am following: 1. Build, install and test my app mvn clean install 2. Try to run the application with emma enable adb shell am instrument -w -e coverage true

[android-developers] onDraw not getting called for a custom view derived from view in layout.

2011-04-28 Thread yasir perwez
Hello All, I have a custom view . package com.yasir.canvasTest; import android.content.Context; import android.graphics.Canvas; import android.graphics.Color; import android.graphics.Paint; import android.graphics.Paint.Align; import android.util.Log; import android.view.View; public

[android-developers] Advanced Medialets Question...

2011-04-28 Thread midimid
For those who've used medialets - having a problem dynamically setting the ap_id. I have a couple of apps that use an android Library. Medialets uses an app_id string in the strings.xml of the app. All of the functionality for the ads is in the Library code (see below), but each app needs to have

[android-developers] Re: Source Code for HelloGoogleMaps Tutorial

2011-04-28 Thread Reynold Rosch
I am using an Android Virtual Device and I had the same problem until I changed the first line of HelloItemizedOverlay(Drawable defaultMarker, Context context) from super(defaultMarker); to super(boundCenterBottom(defaultMarker); After adding the call to boundCenterBottom, it display the

[android-developers] Changing the row color in ListView

2011-04-28 Thread Nouman Naseer
Hi All, I'm using a listview with customAdapter extending from base adapter. Everything is working fine the data is populating and click events are also firing. Now the scenario is; while I'm downloading the data, that will show up onClick Event of the List, I want to disable the click event and

[android-developers] Emulator Orientation Change on Mac

2011-04-28 Thread marcello
On iMac: ./emulator -help-keys gives [...]KEYPAD_MINUS, Ctrl-F6 Volume down button Ctrl-KEYPAD_5, Ctrl-F3 Camera button KEYPAD_7, Ctrl-F11 switch to previous layout KEYPAD_9, Ctrl-F12 switch to next layout F8 toggle cell network on/off [...] but

[android-developers] Creating a background running service to auto turn on/off auto sync when wifi is turned on/off

2011-04-28 Thread Omkar
Hi, I want to create a background running service which will get auto triggered and then set background data and sync property on / off automatically when wifi is set on / off. So basically I need a no UI service which will set background data and sync properties on / off depending on whether

Re: [android-developers] Ubuntu Natty Narwhal and ADB

2011-04-28 Thread nigel
Thanks Amit; I already tired that until my fingers were blue. I got it working in the end with a rule that looked like this SUBSYSTEMS==usb,ATTRS{idVendor}==1004,SYMLINK+=android_adb,MODE=0666 Not sure of the reasoning behind it - just googled and tried every option I found. I don't know why

[android-developers] RECEIVE_BOOT_COMPLETED Request Info

2011-04-28 Thread dani maoz
Hi i have created a java application, i would like to run the application at boot time do i need to use RECEIVE_BOOT_COMPLETED if yes can is there an example someone can post thank you -- You received this message because you are subscribed to the Google Groups Android Developers group. To post

Re: [android-developers] Problem installing android sdk in ubuntu 10.10

2011-04-28 Thread Nandagopal T
Hi, Try with this, https://dl-ssl.google.com/android/eclipse/ Thank you With Regards, Nandagopal T On Sun, Apr 24, 2011 at 3:56 PM, Saurav to.saurav.mukher...@gmail.comwrote: Hi all, I am trying to install android sdk, but the for every try, the android sdk manager gives this error

[android-developers] homero nishiwaki

2011-04-28 Thread homero nishiwaki
homero nishiwaki -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to android-developers+unsubscr...@googlegroups.com For more

Re: [android-developers] Re: First Application Development

2011-04-28 Thread MOHIT SHARMA
Hi Arpit , I hope ur talking about SMS sending utility . In this case u need to start two emulator at same time . id of the emulator would be there no of the emulator . There many example online for this . In case you find any difficulty contact me .. i will send u the source code of the

[android-developers] OpenSL ES + MetaDataExtraction

2011-04-28 Thread milind kurandwadkar
Hi All, We are trying to extract meta data information using OpenSL ES APIs (Metadataextraction object), But it looks like the feature is not supported yet. Can anyone confirm this please? Also is this expected in later releases? We tried this on 2.3.3 release. So as of now what is the

[android-developers] Re: Update Contacts

2011-04-28 Thread Phuong Thai
Hi Ali, I've read your blog. It's really useful and interesting. Thanks for sharing. -- 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: https post

2011-04-28 Thread crossdev
hello bob, try this code bellow, coded by MattC: import java.io.IOException; import java.io.InputStream; import java.io.UnsupportedEncodingException; import java.net.HttpURLConnection; import java.net.URL; import java.net.URLConnection; import org.apache.http.HttpResponse; import

[android-developers] Create an Activity at Runtime

2011-04-28 Thread Mohit sharma
Hi , I was doing some project in which i need to create UI at runtime which implies that i need create activity dynamically . I have googled a lot about how to create activity dynamically but couldn't find thing relevant . Please help me on how to create activity at runtime . Thanx in advance

[android-developers] Basic Question

2011-04-28 Thread Prayag
Hi guys, I am a Newbie and I have a basic question for which I couldnt get any answer yet. What is the need to use two keywords to express that the given activity is the main activity. eg. We write the code action android:name=android.intent.action.MAIN / category

[android-developers] Issues on Samsung Galaxy S - Android app crashes

2011-04-28 Thread shiva
Hi, I am Android developer with experience of more than 40 applications launched on Android Market. I have developed a straight forward app which pulls huge data from web services in XML format and process the data and renders them on the app as per the business logic. I am using Sony Xperia x10

Re: [android-developers] openning PDF with password

2011-04-28 Thread Mark Murphy
You would need to ask that question of the author of whichever PDF viewer you are trying to use, or the authors of all PDF viewers if you are trying to support all of them. None of them are part of the Android OS or SDK. On Wed, Apr 27, 2011 at 1:42 PM, Marco Antonio Abreu mabreu...@gmail.com

Re: [android-developers] Permission Denial at Receiving SMS

2011-04-28 Thread Kostya Vasilyev
Dario, Check to make sure that the permission is directly inside the manifest tag, not inside receiver. -- Kostya 28.04.2011 10:08, Dario Enser пишет: Hi all... Im trying to make an application that receives SMS, but i can't do it. I tried a lot of piece of codes that it supposed to works

[android-developers] Re: Option to unlock the boot loader for Sony Ericsson Android Gingerbread phones now available.

2011-04-28 Thread Carl
Hi Thanks for your feedback here on Google groups and the Developer blog. At the moment there is no turning back after unlocking the bootloader which is clearly stated in the instructions. However, we are looking into alternatives such as sharing information on how to build your own custom ROM

Re: [android-developers] cURL on Android vs C calls to Java

2011-04-28 Thread Mark Murphy
On Wed, Apr 27, 2011 at 9:12 PM, Jim j...@harmonicsystems.net wrote: Option 1 - port curl to android.  I have had no luck with this so far. Since curl runs on lots of platforms, I am surprised that there are problems here. You might inquire on the [android-ndk] list with your specific problems,

Re: [android-developers] Create an Activity at Runtime

2011-04-28 Thread Mark Murphy
On Thu, Apr 28, 2011 at 1:02 AM, Mohit sharma mohit7...@gmail.com wrote: I was doing some project in which i need to create UI at runtime which implies that i need create activity dynamically . I have googled a lot about how to create activity dynamically but couldn't find thing relevant .

[android-developers] Re: dispatch key events to other activities.

2011-04-28 Thread Nguyen Dat
Dear all, Relate with question can't dispatch event when change Activity, i have litle concern about Long press key event have abort while timing change Activity like Scenario as bellow: [Activit1] - [Activity2] Does anyone known which class, method or document indicate while change Activity key

[android-developers] Re: How to check telephony is available

2011-04-28 Thread vadim
Checking the phone number will not necessarily work. As I understand it, it's up to the carrier to write the phone number onto the SIM card, and some don't. My T-Mobile Nexus One reports it as unknown. On Apr 26, 1:38 am, cool rss feed coolrssfe...@gmail.com wrote: I am not sure the

Re: [android-developers] RECEIVE_BOOT_COMPLETED Request Info

2011-04-28 Thread Mark Murphy
On Wed, Apr 27, 2011 at 2:58 PM, dani maoz maoz.d...@gmail.com wrote: i have created a java application, i would like to run the application at boot time do i need to use RECEIVE_BOOT_COMPLETED if yes can is there an example someone can post

Re: [android-developers] Mapactivity

2011-04-28 Thread kaushik p
But for every other activity it works fine , but for only mapactivity it gives force close . I am not getting any kind of information on googling also please help me On Thu, Apr 28, 2011 at 4:01 PM, Mark Murphy mmur...@commonsware.comwrote: You call startActivity() on a MapActivity the same as

Re: [android-developers] Mapactivity

2011-04-28 Thread Mark Murphy
On Thu, Apr 28, 2011 at 6:54 AM, kaushik p kaushiks...@gmail.com wrote: But for every other activity it works fine , but for only mapactivity it gives force close . I am not getting any kind of information on googling also please help me Use adb logcat, DDMS, or the DDMS perspective in Eclipse

Re: [android-developers] Creating a background running service to auto turn on/off auto sync when wifi is turned on/off

2011-04-28 Thread Amit Pundir
On Thu, Apr 28, 2011 at 1:18 PM, Omkar omkar.ghai...@gmail.com wrote: Hi,    I want to create a background running service which will get auto triggered and then set background data and sync property on / off automatically when wifi is set on / off. So basically I need a no UI service which

Re: [android-developers] Mapactivity

2011-04-28 Thread Mohammed Hossain Doula
Did you enable the GoogleMap from another Apps and then again Run your Apps? On Thu, Apr 28, 2011 at 4:54 PM, kaushik p kaushiks...@gmail.com wrote: But for every other activity it works fine , but for only mapactivity it gives force close . I am not getting any kind of information on googling

[android-developers] Re: Use of files

2011-04-28 Thread Jernej K.
I found the problem! I used the if statement wrong :) But I can confirm you have in Android native code accessibility to local files created in java - files create on application level, where other applications can not see your file! Now I can write to files in native code and read them in

[android-developers] what is possibly wrong in this SIMPLE animation???

2011-04-28 Thread Rakib
when the button is clicked, i want it to move down by 100 pixels and fade out i want it all to happen in 2 seconds. AnimationSet myAnimationSet = new AnimationSet(true); myAnimationSet.setDuration(2000); myAnimationSet.addAnimation(new AlphaAnimation(1.0f, 0.0f));

Re: [android-developers] Creating a background running service to auto turn on/off auto sync when wifi is turned on/off

2011-04-28 Thread Amit Pundir
I completely misunderstood your problem, please ignore my last mail. Regards, Amit Pundir On Thu, Apr 28, 2011 at 4:30 PM, Amit Pundir pundira...@gmail.com wrote: On Thu, Apr 28, 2011 at 1:18 PM, Omkar omkar.ghai...@gmail.com wrote: Hi,    I want to create a background running service which

Re: [android-developers] Mapactivity

2011-04-28 Thread kaushik p
no , i have used google maps from some other application [app from internet which used google maps ],but not from the the code of other app . On Thu, Apr 28, 2011 at 4:30 PM, Mohammed Hossain Doula hossaindo...@gmail.com wrote: Did you enable the GoogleMap from another Apps and then again Run

Re: [android-developers] Create an Activity at Runtime

2011-04-28 Thread Gergely Juhász
You dont have to create an activity at realtime. You have to create the view elements of your activity at real time. Check out for example this: http://www.brighthub.com/mobile/google-android/articles/48845.aspx On 28 April 2011 12:51, Mark Murphy mmur...@commonsware.com wrote: On Thu, Apr 28,

[android-developers] Hi all

2011-04-28 Thread Muhammad Nabeel Arif
I am new to android development. I am trying to create a folder on sdCard and set it's visibility to false. That is, I want to create a hidden folder on sdcard. Can anybody please share a piece of code to do that. Thanks. -- You received this message because you are subscribed to the Google

[android-developers] My phone is available for programming in it?

2011-04-28 Thread ruby Bautista
Hi, I got a phone BLU-tango (http://www.bluproducts.com/downloads.html with android) and i want to start developing something in it. I have windows vista and I read that in order to test my application on the device I need the OEM USB Drivers, the problem is that I find nothing about this phone

[android-developers] NDK CRC errors

2011-04-28 Thread Steve Graham
I just downloaded the latest NDK and got multiple CRC errors when extracting it using Power Archiver 2011. Has anyone else has this experience? Is it safe to use? Thanks, Steve -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to

[android-developers] Fix calender

2011-04-28 Thread Shushu
My calender is not working! I have deadlines to meet -- 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] Java SE Development Kit (JDK) not found

2011-04-28 Thread Steve Graham
I have downloaded and installed the Java SE Development Kit and Classic Eclipse. When I try to install the Android SDK Tools, I get the following message. I'm on a Windows 7 Home Premium 64-bit system. Any help would be appreciated. Thanks, Steve -- You received this message because you are

[android-developers] Re: Java SE Development Kit (JDK) not found

2011-04-28 Thread Steve Graham
On Thu, Apr 28, 2011 at 1:34 AM, Steve Graham solitary.wandere...@gmail.com wrote: I have downloaded and installed the Java SE Development Kit and Classic Eclipse. When I try to install the Android SDK Tools, I get the following message. I'm on a Windows 7 Home Premium 64-bit system. Any

[android-developers] Video on 2.1 causes browser text to increase

2011-04-28 Thread Rebecca Sliter
Quick question regarding a weird bug I've found on the mobile site I'm building-- Whenever I play video on my phone (running 2.1), exiting the video to return to the site causes all text on the page to increase in size. Any ideas why this would happen? -- You received this message because you

[android-developers] How to Set 2 EmptyView in ListView

2011-04-28 Thread kenichi kato
hi guys. i try to set 3 empty view to ListView. at first, i try to set LinearLayout to EmptyView. but it doesn't work. so, i try this code. listView.setEmptyView(findViewById(R.id.emptyImage)); listView.setEmptyView(findViewById(R.id.emptyButton));

[android-developers] Re: Adjust ringer volume for incoming calls

2011-04-28 Thread Josh
Does anyone have any thoughts? Or would more information be useful? Still stuck on this and it's driving me crazy. -- 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] Google Map 5 for Android development

2011-04-28 Thread bappa
Hi I want to implement google map 5 3D API in my application. I have updated the goole map to 5 in my target device. Can you please tell me what I have to do to accomplish this? Thanks Ritwik -- You received this message because you are subscribed to the Google Groups Android Developers

[android-developers] Adjust ringer volume for incoming calls

2011-04-28 Thread Josh
I'm currently using a BroadcastReceiver on android.intent.action.PHONE_STATE to detect when an incoming call is arriving. Then, after checking a few user values, I attempt to alter the ringer volume using the following code. aMan = (AudioManager) context.getSystemService(Context.AUDIO_SERVICE);

Re: [android-developers] Programming Android without any other experience......

2011-04-28 Thread Francisco Dalla Rosa soares
A good start, and it was pretty much my start: First of all, http://developer.android.com/ is your friend. The developer website may not have everything but it is very detailed and has a lot of material to start. So here we go: 1. Do the Hello World Tutorial (it seems like you did it already,

[android-developers] install android sdk tools on windows 7

2011-04-28 Thread freecoder
hello everyone when i try to install android sdk tools it says java se devolopment kit(JDK) not found so i insall jdk-6u25-windows-i586.exe(I have 32 bit windows) from location http://www.oracle.com/technetwork/java/javase/downloads/jdk-6u25-download-346242.html and still it say java se

[android-developers] How to change TextView object.

2011-04-28 Thread rishabh agrawal
I want to take the TextView in the xml file.So in this project i want convert my object to array type. package com.assign.ment; import java.net.URL; import javax.xml.parsers.DocumentBuilder; import javax.xml.parsers.DocumentBuilderFactory; import org.w3c.dom.Document; import

[android-developers] Adjust ringer volume for incoming calls

2011-04-28 Thread Josh
I'm currently using a BroadcastReceiver on android.intent.action.PHONE_STATE to detect when an incoming call is arriving. Then, after checking a few user values, I attempt to alter the ringer volume using the following code. aMan = (AudioManager) context.getSystemService(Context.AUDIO_SERVICE);

[android-developers] Calling menu from an item in a ListView

2011-04-28 Thread Rpuccini
Hi, I have a ListView, that exibits data from my database. What I want to do, is to click on the item from the ListView and call the Menu. The Menu is called normally if I click on the menu button in the phone. But I couldnt find a way to call the menu since I click on one item from the ListView.

[android-developers] Help for installig android sdk tool

2011-04-28 Thread freecoder
hello everyone when i try to install android sdk tools it says java se devolopment kit(JDK) not found so i insall jdk-6u25-windows-i586.exe(I have 32 bit windows) from location http://www.oracle.com/technetwork/java/javase/downloads/jdk-6u25-download-346242.html and still it say java se

  1   2   3   >