[android-developers] Re: Android Layouts Are Horrible

2011-04-05 Thread dirk
Hold on a minute. I really don't care the least bit about underlying code, that is, the XML that's generated by a really good design tool. Saying you should have to learn the XML (in this case) is like saying you have to learn the bytecode that's generated from the java code. Sure, you always need

[android-developers] PreferenceActivity.Header -- is there a better way

2011-04-05 Thread Zsolt Vasvari
I am trying to replace the setPreferenceScreen() functionality to switch to a particular header of my new style Preference Activity. I cannot find a straightforward way of doing is. Currently, I am saving the list of headers: @Override public void onBuildHeaders(ListHeader target) {

[android-developers] How to have 2 click listener on a group in expandableListView

2011-04-05 Thread Carbodrache
Hello, I have an expandableListView with simple textViews, I want to have the same result on a item (parent or child) click but if I use ExpandableListView.setOnGroupClickListener() method I can't handle the expand of the parent node and so can't see children. The solution I found is to add an

[android-developers] Honeycomb LVL problem?

2011-04-05 Thread MagouyaWare
I have an application on the Android Market that is using the LVL... It is using the default ServerManagedPolicy class as its license policy. Everything seemed to be working ok, until recently... I received an email from a customer who bought my app for a table that was running Android 2.2...

Re: [android-developers] how to get receive status?

2011-04-05 Thread Justin Anderson
What in the world are you asking? Thanks, Justin Anderson MagouyaWare Developer http://sites.google.com/site/magouyaware On Mon, Apr 4, 2011 at 10:54 PM, swarnendu gotoswarne...@gmail.com wrote: in python-- for android automation import android phone_1=android.Android('1')

Re: [android-developers] How to have 2 click listener on a group in expandableListView

2011-04-05 Thread Kostya Vasilyev
ExpandableListView has setOnItemClickListener, which is called for both group and child items. You can tell groups from children by looking at its id value. However, this UI would look the same as all other expandable list views, but work differently - are you sure you want to do this? --

[android-developers] Android apps authentication when using WebService

2011-04-05 Thread FG
Hi there, I have a simple security question. I need to make sure that only the application I designed and developped is able to access my WebServices and not a hacked version of it. In other words, what kind of mecanisms I can put inside my application (based on the developper certificate or on

[android-developers] Re: new developer questions

2011-04-05 Thread hoss7
thanks On Apr 5, 12:26 am, dana tassler dana.tass...@gmail.com wrote: A key to becoming an effective programmer is using the internet effectively. Using Google, I searched for develop android and got this page.  I'd recommend being resourceful and not afraid to look for answers on your own.

Re: [android-developers] random 404 on google android pages

2011-04-05 Thread Justin Anderson
The OP was saying that it was a widespread problem that has been mentioned by others on IRC and Twitter... not that IRC and Twitter wouldn't work for him either... They aren't problems with the OP's connection... there is/was a problem with the Android Market Servers (anyone surprised?) as I had

Re: [android-developers] DEBUG an error with inflate i think?

2011-04-05 Thread Justin Anderson
* 04-05 01:30:26.100: ERROR/AndroidRuntime(595): Caused by: android.view.InflateException: Binary XML file line #24: Error inflating class unknown * What is on line 24 of your xml file? Thanks, Justin Anderson MagouyaWare Developer http://sites.google.com/site/magouyaware On Mon, Apr 4, 2011 at

[android-developers] Camera.getNumberOfCameras() not working

2011-04-05 Thread Abhijeet Pathak
I am getting error Cannot find symbol when using getNumberOfCameras(). I am compiling app for api level 8. Please help me fixing this. Thanks, Abhijeet -- 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: HomeScreen Widget frustrating

2011-04-05 Thread Justin Anderson
* But what do I have to do with Android 2.1? I don't get the scrolling working.* Exactly. As Dianne said, you can't use scrolling widgets in any version of Android prior to 3.0... Thanks, Justin Anderson MagouyaWare Developer http://sites.google.com/site/magouyaware On Mon, Apr 4, 2011 at

[android-developers] Re: Compilation error using android SDK 2.0 (Camera Preview)

2011-04-05 Thread Abhijeet Pathak
I am also facing the same problem. Have you found any work around yet? -- 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] Permission denied for the owner of a service ?

2011-04-05 Thread Justin Anderson
* I am tweaking Android and making some modifications on the Phone package* This group is only for SDK applications... For modifying your own build of Android, you need to post this question in a different group. Unfortunately my mind has drawn a blank and I can't remember which group that is.

[android-developers] Passing data with Intent problem

2011-04-05 Thread Brad Stintson
I have three activities say A,B and C. They are linked as A--B--C. Now I want to send a string of data from activity A to activity B and C. When I use putextra() then from A to B it works perfectly but from B to C it shows error. How to achieve that? -- You received this message because you are

Re: [android-developers] Button and onClickListner help needed

2011-04-05 Thread Justin Anderson
Have you verified you are not getting in the onClick method? Try putting a Toast inside your onClick method and see whether or not you are getting in there... I don't see anything wrong offhand with your onClickListener... Thanks, Justin Anderson MagouyaWare Developer

[android-developers] Re: 2 Devices use audio to communicate by netwrok.

2011-04-05 Thread Jamie Lin
Sorry... I want it work without sip and sd card.. On Apr 1, 12:59 pm, gjs garyjamessi...@gmail.com wrote: http://developer.android.com/resources/samples/SipDemo/index.html On Mar 31, 9:35 pm, Jamie Lin allregis...@gmail.com wrote: I want to make two devices use audio to communicate by

[android-developers] Re: Camera.getNumberOfCameras() not working

2011-04-05 Thread Abhijeet Pathak
I also created a new project in Eclipse. In that also, getNumberOfCameras() is not shown in dropdown list of available method names for Camera. -- 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: Start Dialer with delay

2011-04-05 Thread viktor
Have any ideas? On 4 Кві, 12:17, viktor victor.scherb...@gmail.com wrote: Hi, My issue is that need to show in Dialer correct number when incoming call, just trick number in Dialer. I tried to add temp contact to contacts DB, but Dialer doesn't sync the contact!? Is it possible to start

[android-developers] Re: Camera.getNumberOfCameras() not working

2011-04-05 Thread blindfold
getNumberOfCameras() needs API level 9 according to documentation. On Apr 5, 8:54 am, Abhijeet Pathak pathak...@gmail.com wrote: I am getting error Cannot find symbol when using getNumberOfCameras(). I am compiling app for api level 8. Please help me fixing this. Thanks, Abhijeet -- You

Re: [android-developers] Re: Camera.getNumberOfCameras() not working

2011-04-05 Thread Abhijeet Pathak
Does this mean Android 2.3? If yes, hows to retrieve number of cameras on android 2.2 (api level 8)? On 5 Apr 2011 13:02, blindfold seeingwithso...@gmail.com wrote: getNumberOfCameras() needs API level 9 according to documentation. On Apr 5, 8:54 am, Abhijeet Pathak pathak...@gmail.com wrote:

[android-developers] Re: new developer questions

2011-04-05 Thread hoss7
which eclipse version On Apr 5, 12:22 am, Miguel Morales therevolti...@gmail.com wrote: 1. Eclipse 2. Android SDK 3. Yes 4.http://developer.android.com/guide/topics/fundamentals.html On Sun, Apr 3, 2011 at 12:32 PM, hoss7 hoss...@gmail.com wrote: i want starrt develop android app

[android-developers] Re: new developer questions

2011-04-05 Thread hoss7
how can i test my app in phone? On Apr 5, 12:26 am, dana tassler dana.tass...@gmail.com wrote: A key to becoming an effective programmer is using the internet effectively. Using Google, I searched for develop android and got this page.  I'd recommend being resourceful and not afraid to look

[android-developers] Re: Honeycomb LVL problem?

2011-04-05 Thread Zsolt Vasvari
How does one update a tablet from 2.2 to 3.0? As far as I know, there is not a single tablet out there where there is an offical upgrade path, so this is certainly using some kind of half-baked ROM? But how is that even possible as there is no 3.0 source code made available. Something is very

[android-developers] Re: new developer questions

2011-04-05 Thread hoss7
where can i download ADT Plugin for Eclipse? On Apr 5, 11:40 am, hoss7 hoss...@gmail.com wrote: how can i test my app in phone? On Apr 5, 12:26 am, dana tassler dana.tass...@gmail.com wrote: A key to becoming an effective programmer is using the internet effectively. Using

[android-developers] how to make timetable in android.

2011-04-05 Thread Kirti Joshi
how to make timetable and schedule for a day, week and month. in android application.? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group,

Re: [android-developers] Re: new developer questions

2011-04-05 Thread Miguel Morales
The latest. On Tue, Apr 5, 2011 at 12:40 AM, hoss7 hoss...@gmail.com wrote: which eclipse version On Apr 5, 12:22 am, Miguel Morales therevolti...@gmail.com wrote: 1. Eclipse 2. Android SDK 3. Yes 4.http://developer.android.com/guide/topics/fundamentals.html On

Re: [android-developers] Passing data with Intent problem

2011-04-05 Thread Filip Havlicek
What error? How exactly are you sending the string from A to B and from B to C? Are you reusing the same intent or are you creating a new one? Best regards, Filip Havlicek 2011/4/5 Brad Stintson geek.bin...@gmail.com I have three activities say A,B and C. They are linked as A--B--C. Now I

Re: [android-developers] Re: Android Layouts Are Horrible

2011-04-05 Thread Daniel Drozdzewski
...with a small difference that XML was designed to be human readable but also for machines, while the bytecode never meant to be human readable. On Tue, Apr 5, 2011 at 7:19 AM, dirk dhaa...@gmail.com wrote: Hold on a minute. I really don't care the least bit about underlying code, that is, the

[android-developers] Activity without GUI - Activity

2011-04-05 Thread Gorka
Hi, I want to deploy an application that reads a NFC tag and shows the text on the screen with a Toast and reads it using a texttospeach class. So, I don´t want to start an activity because I don´t need any GUI. Is that possible? I have tried to remove the activity tags from the manifest but

[android-developers] Re: Activity without GUI - Activity

2011-04-05 Thread Zsolt Vasvari
An app without a UI is a service. On Apr 5, 3:55 pm, Gorka gork...@gmail.com wrote: Hi, I want to deploy an application that reads a NFC tag and shows the text on the screen with a Toast and reads it using a texttospeach class. So, I don´t want to start an activity because I don´t need any

[android-developers] Re: Activity without GUI - Activity

2011-04-05 Thread Gorka Hernando
Ok, But if I create my application as a service it will start when the intent occurs? I mean, when the mobile detects the tag and creates the NDEF .. intent will the application get this intent and show the toast on the screen?? Thanks On 5 abr, 10:01, Zsolt Vasvari zvasv...@gmail.com wrote:

[android-developers] Re: Amazon appstore order reports

2011-04-05 Thread Michael A.
Hi, I contacted them friday. Got a reply yesterday explaining that they are still having trouble with the reporting. Regards, Michael A. On Apr 5, 6:57 am, String sterling.ud...@googlemail.com wrote: Hate to say it,but I saw the same thing. Sales looked pretty good the first few days, then

[android-developers] Re: new developer questions

2011-04-05 Thread hoss7
thanks again and how can i test my app in phone? On Apr 5, 11:46 am, Miguel Morales therevolti...@gmail.com wrote: The latest. On Tue, Apr 5, 2011 at 12:40 AM, hoss7 hoss...@gmail.com wrote: which eclipse version On Apr 5, 12:22 am, Miguel Morales therevolti...@gmail.com wrote:

[android-developers] Re: HomeScreen Widget frustrating

2011-04-05 Thread Stefan S
But how about the Calendarwidget. There is also a scrolling. I try to get such a behaviour in my widget. On 5 Apr., 08:58, Justin Anderson magouyaw...@gmail.com wrote: * But what do I have to do with Android 2.1? I don't get the scrolling working.* Exactly.  As Dianne said, you can't use

[android-developers] Re: new developer questions

2011-04-05 Thread hoss7
i have Eclipse for PHP can i work with this type of Eclipse for develop android app? On Apr 5, 11:46 am, Miguel Morales therevolti...@gmail.com wrote: The latest. On Tue, Apr 5, 2011 at 12:40 AM, hoss7 hoss...@gmail.com wrote: which eclipse version On Apr 5, 12:22 am, Miguel

[android-developers] Is there any procedure in java that can attach extra information in Video file in Android?

2011-04-05 Thread Nilay
Hello All, I am working with Video Component in Android, I have query related with it, Is there any procedure in java that can attach extra information in Video file in Android? Hope for positive reply. Thanks And regards. -- You received this message because you are subscribed to the

[android-developers] How to build libraries

2011-04-05 Thread yogi
Hi all, I download the android 2.3 source code and build it.Now onwards i want to build only webkit lib. Is there any command for the this, I tried make -j4 libwebcore, but it does not work for me. Regards Yogi -- You received this message because you are subscribed to the Google Groups Android

Re: [android-developers] Re: new developer questions

2011-04-05 Thread Filip Havlicek
What about just reading the stuff on the web? http://developer.android.com/guide/developing/index.html http://developer.android.com/sdk/index.html 2011/4/5 hoss7 hoss...@gmail.com i have Eclipse for PHP can i work with this type of Eclipse for develop android app? On Apr 5, 11:46 am, Miguel

[android-developers] Re: HoneyComb isHardwareAccelerated() always returns false

2011-04-05 Thread Shai
Same results with ApiDemos! I created a new sample project (ApiDemos) using ADT with API level 11 as the target and I tried the following: I DO get the patterned blue background in the main screen (seems like hardware acceleration is working). In ApiDemos.Java: - In the OnCreate I added a log

Re: [android-developers] Passing data with Intent problem

2011-04-05 Thread Brad Stintson
Firstly, I send data using putExtra from A to B. Then I store data in variable and then I send again from B to C. On Tue, Apr 5, 2011 at 1:18 PM, Filip Havlicek havlicek.fi...@gmail.comwrote: What error? How exactly are you sending the string from A to B and from B to C? Are you reusing the

[android-developers] Search Widget doesn't appear on 2.1 (Eclair) but it appears on 2.2 (froyo)

2011-04-05 Thread varinag gold
Hi, I have following code to add a widget on custom home screen . when I run this code it doesn't show 'Search Widget' on Android 2.1 but same code show 'Search Widget' on Android 2.2 . Can any one let me know why it is like this? and how I can add 'Search Widget' for 2.1 on Eclair as well.

[android-developers] Re: Converting Blackberry Apps

2011-04-05 Thread j.s. mammen
Do you have the source code to the blackberry apps? On Mar 31, 6:27 pm, usafrmajor usafrma...@gmail.com wrote: Is there a utility that will facilitate the conversion of Blackberry apps to android apps?  I understand if it is not perfect, but it would be great to have something that could do

[android-developers] Re: Activity without GUI - Activity

2011-04-05 Thread Gorka Hernando
Hi again, Sorry if I am posting too much, but I really need to make this work today. Here it is my manifest file. I have created a service and a receiver to get the NDEF_DISCOVERED intent. ?xml version=1.0 encoding=utf-8? manifest xmlns:android=http://schemas.android.com/apk/res/android;

[android-developers] Re: HomeScreen Widget frustrating

2011-04-05 Thread space
Which phone are you using? Which home application are you using? (the default one or you downloaded something from the market) Which calendar widget are you using? /Pal On Apr 5, 10:19 am, Stefan S shogu...@gmail.com wrote: But how about the Calendarwidget. There is also a scrolling. I try to

Re: [android-developers] Re: Converting Blackberry Apps

2011-04-05 Thread Robin Talwar
ya well i do have the source code n i wont mind converting it into android... On Tue, Apr 5, 2011 at 2:12 PM, j.s. mammen mamm...@gmail.com wrote: Do you have the source code to the blackberry apps? On Mar 31, 6:27 pm, usafrmajor usafrma...@gmail.com wrote: Is there a utility that will

Re: [android-developers] Re: Converting Blackberry Apps

2011-04-05 Thread J.S. Mammen
Is the bb app written in Java/J2ME or C++? On Tue, Apr 5, 2011 at 2:16 PM, Robin Talwar r.o.b.i.n.abhis...@gmail.comwrote: ya well i do have the source code n i wont mind converting it into android... On Tue, Apr 5, 2011 at 2:12 PM, j.s. mammen mamm...@gmail.com wrote: Do you have the

[android-developers] Re: Android MediaPlayer sometimes stops playing a sound file early

2011-04-05 Thread Syed Rakib Al Hasan
i face the SAME issue. it happens in both the emulator and also in my test device - both of which run android 2.2 i have included my sound files in the raw folder. but still i have the same problem - the sound cuts off near the end upon button click -- You received this message because

Re: [android-developers] Passing data with Intent problem

2011-04-05 Thread Filip Havlicek
Then it should work just fine. 2011/4/5 Brad Stintson geek.bin...@gmail.com Firstly, I send data using putExtra from A to B. Then I store data in variable and then I send again from B to C. On Tue, Apr 5, 2011 at 1:18 PM, Filip Havlicek havlicek.fi...@gmail.comwrote: What error? How

[android-developers] Re: onWindowFocusChanged() happens more than once when resuming the application from the homescreen or app drawer

2011-04-05 Thread Syed Rakib Al Hasan
## HOME BUTTON PRESSED TO MINIMIZE THE APPLICATION ## 04-05 15:00:17.801: INFO/System.out(357): onWindowFocusChanged() - hasFocus:false ## APPLICATION BUTTON PRESSED TO RETURN TO THE RUNNING APPLICATION ## 04-05 15:00:28.354: INFO/System.out(357): onWindowFocusChanged() -

[android-developers] onWindowFocusChanged() happens more than once when resuming the application from homescreen or app drawer

2011-04-05 Thread Syed Rakib Al Hasan
## HOME BUTTON PRESSED TO MINIMIZE THE APPLICATION ## 04-05 15:00:17.801: INFO/System.out(357): onWindowFocusChanged() - hasFocus:false ## APPLICATION BUTTON PRESSED TO RETURN TO THE RUNNING APPLICATION ## 04-05 15:00:28.354: INFO/System.out(357): onWindowFocusChanged() -

[android-developers] Re: new developer questions

2011-04-05 Thread hoss7
@filip i have Eclipse for PHP can i work with this type of Eclipse for develop android app? On Apr 5, 12:31 pm, Filip Havlicek havlicek.fi...@gmail.com wrote: What about just reading the stuff on the web?

Re: [android-developers] random 404 on google android pages

2011-04-05 Thread Marcin Orlowski
On 5 April 2011 08:49, Justin Anderson magouyaw...@gmail.com wrote: The OP was saying that it was a widespread problem that has been mentioned by others on IRC and Twitter... not that IRC and Twitter wouldn't work for him either... Ok, I misundestood him then. Sorry Regards, Marcin Orlowski

[android-developers] Re: Android apps authentication when using WebService

2011-04-05 Thread davemeetsworld
Perhaps it would be easier to validate the data that is sent to your web service? What does your application do? and why is it important that the application that sends the data is unmodified? -- You received this message because you are subscribed to the Google Groups Android Developers group.

[android-developers] Re: Camera.getNumberOfCameras() not working

2011-04-05 Thread blindfold
Does this mean Android 2.3? Yes. If yes, hows to retrieve number of cameras on android 2.2 (api level 8)? You cannot. You can only make it work for Android 2.3+ and make things degrade gracefully (not using a camera count) for Android 2.2 and lower On Apr 5, 9:36 am, Abhijeet Pathak

[android-developers] Avoiding service to be killed by the system

2011-04-05 Thread Paolo
Hi there, some weeks ago I ask you about service life cycle and about the START_STICKY flag returned from onStartCommand(), for allowing the service to be restarted after it has been killed by the system. This way works fine on Android 2.1 and 2.2 but not in Android 2.3 (Gingerbread)... the system

[android-developers] Facade Support

2011-04-05 Thread rahul
I m using ase_r25_2.1_04-02-2011.apk for android SDK. From where I will get the supported facade? -- 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

[android-developers] Re: Source code for StackView(Honeycomb build) available yet?

2011-04-05 Thread Krzysztof Majkowski
I don't think Google will make the source code of Honeycomb opened. I recently read about they want to have more control about devices which has installed Android. The Honeycomb is dedicated for tablet's and they don't want to let anybody install it in smartphone. On 5 Kwi, 06:03, Samuh

[android-developers] Not able to create .apk file

2011-04-05 Thread rahul
I write a small application in Eclipse to print Hello in emulator.And when I run that file it shows me 2 error 1)Error executing aapt. Please check aapt is present at C:\Android 2.2\platform-tools\aapt.exe 2)R cannot be resolved to a variable In Android 2.2 folder their is no 'platform-tools'

[android-developers] KeyStore usage..

2011-04-05 Thread bharath
HI, How to use KeyStore in Android, can we use KeyStore for securing the database value? Can you please provide some example. Thanks in advance. -- 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] Not able to create .apk file

2011-04-05 Thread Kostya Vasilyev
05.04.2011 14:11, rahul пишет: In Android 2.2 folder their is no 'platform-tools' folder. Did you install platform tools? If not, use the SDK Manager to do so. -- Kostya Vasilyev -- http://kmansoft.wordpress.com -- You received this message because you are subscribed to the Google Groups

[android-developers] Code Needed.

2011-04-05 Thread Kirti Joshi
hello everyone, i wanna code for same application, can any one help me ? https://market.android.com/details?id=br.com.android.appointments.otavio.massard.mendes Thanks in advance. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post

[android-developers] WIFI connection

2011-04-05 Thread vani reddy
Hi, How to conect to a particular wifi network programmatically in android? i have coded the below: WifiConfiguration wifiConfig = new WifiConfiguration(); wifiConfig.BSSID = 68:ef:bd:db:f5:05; wifiConfig.priority = 1; wifiConfig.allowedKeyManagement.set(KeyMgmt.NONE);

[android-developers] Re: HomeScreen Widget frustrating

2011-04-05 Thread Stefan S
I've the Desire HD and I use the standard calendar widget. On 5 Apr., 10:46, space pal.sz...@gmail.com wrote: Which phone are you using? Which home application are you using?  (the default one or you downloaded something from the market) Which calendar widget are you using? /Pal On Apr 5,

Re: [android-developers] Code Needed.

2011-04-05 Thread Marcin Orlowski
On 5 April 2011 12:32, Kirti Joshi joshikirti...@gmail.com wrote: i wanna code for same application, can any one help me https://market.android.com/details?id=br.com.android.appointments.otavio.massard.mendes No. -- You received this message because you are subscribed to the Google Groups

[android-developers] Re: Activity without GUI - Activity

2011-04-05 Thread skink
On Apr 5, 10:45 am, Gorka Hernando g.herna...@ogmio.com wrote: Hi again, Sorry if I am posting too much, but I really need to make this work today. Here it is my manifest file. I have created a service and a receiver to get the NDEF_DISCOVERED intent. ?xml version=1.0 encoding=utf-8?

[android-developers] Re: Activity without GUI - Activity

2011-04-05 Thread skink
On Apr 5, 10:45 am, Gorka Hernando g.herna...@ogmio.com wrote: Hi again, Sorry if I am posting too much, but I really need to make this work today. Here it is my manifest file. I have created a service and a receiver to get the NDEF_DISCOVERED intent. ?xml version=1.0 encoding=utf-8?

[android-developers] Fade in animation is not getting displayed?

2011-04-05 Thread Pink
Hi, I am using fade in animation in my application. When i try to play fade in animation it is getting played but not displayed. I have layout as follows. FrameLayout Button android:layout_width=20dip android:layout_height=10dip .../

Re: [android-developers] Re: (File export) What's going on with my code?[NEED HELP]

2011-04-05 Thread Alaeddine Ghribi
Hi, So, i solved the 80% of the problem, now when debugging i have all the path to the settings.dat: /data/data/acrburant.android.com/files/settings.dat However, i'm facing a problem when writing the file to the SDCARD. I have permission denied and SDCARD not mounted exception. Here is the code:

Re: [android-developers] Re: (File export) What's going on with my code?[NEED HELP]

2011-04-05 Thread Kostya Vasilyev
05.04.2011 15:47, Alaeddine Ghribi пишет: However, i'm facing a problem when writing the file to the SDCARD. I have permission denied and SDCARD not mounted exception. Here is the code: Do you have a memory card in the phone? If you do, make sure it's not mounted as a disk drive by your

Re: [android-developers] Re: HomeScreen Widget frustrating

2011-04-05 Thread Mark Murphy
On Tue, Apr 5, 2011 at 7:10 AM, Stefan S shogu...@gmail.com wrote: I've the Desire HD and I use the standard calendar widget. That is not an app widget, and it is not the standard calendar widget. The standard calendar widget does not scroll. Just because it shows up on an HTC Sense home screen

[android-developers] WIFI connection

2011-04-05 Thread vani reddy
Hi, How to programmatically connect to a particular wifi network,which is in range.? How to remove the Out Of range networks from wifi configuration list? -- Regards, Vani Reddy -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to

[android-developers] Re: Using RatingBar as Fav with one star

2011-04-05 Thread Jonas Alves
Use a CompoundButton. On Apr 5, 2:57 am, ramindroid singhramin...@gmail.com wrote: Any update on this? On Apr 4, 7:35 pm, ramindroid singhramin...@gmail.com wrote: Hi, I tried implementing the Favourite functionaity for any Contacts using the RatingBar (having one Star). I set the

Re: [android-developers] Re: (File export) What's going on with my code?[NEED HELP]

2011-04-05 Thread Alaeddine Ghribi
I added this in the emulator: -sdcard /Users/Alaeddine/Documents/workspace/android_sdcard I verified also that the /sdcard is well mounted by the emulator, not by the the computer. This can not be a code problem ? By the way, i solved the problem of settings.dat path by doing this(to all persons

[android-developers] SSL certpath error, Issue in Android or on server side?!

2011-04-05 Thread Sebastian Wagner
Hi everybody, I cannot connect to the URL https://umbreit.e-bookshelf.de with the HTTPClient. It *seems* like this Issue is also ours: http://code.google.com/p/android/issues/detail?id=1946#c19 Could someone verify that from the team if its an Android or a problem on the server side?

[android-developers] Re: Android Layouts Are Horrible

2011-04-05 Thread Craigbtx
I agree with Dirk and others. After using Microsofts development environment, Visual Studio and asp.net for me, there is no reason to code database connections, html tables of data etc., sql update, delete and insert commands. If you know them that is great and it is helpful. But by having a full

[android-developers] Re: Activity without GUI - Activity

2011-04-05 Thread Gorka Hernando
Hi, Thanks for your response. I am taking a look at it. I am not sure if I am working in the rigth way. Since I want the service to execute when the tag is detected, I guess I have to declare a BroadcastReceiver within my packet so that when I receive the intent I can start the service. Is that

[android-developers] Re: Activity without GUI - Activity

2011-04-05 Thread Gorka Hernando
Sorry, I forgot to say that after the broadcast is catched withing the onreceive I have this code: public void onReceive(Context context, Intent intent) { // show first message Toast toast = Toast.makeText(context, test, Toast.LENGTH_LONG); toast.show();

[android-developers] Activity Life cycle question

2011-04-05 Thread Serdel
Maybe the title of this topic is not quite proper but it considers the life cycle of android activities. I looked through many open source project and saw that usually when an activity is opened form a basic one the main screen is not closed. When the user presses the 'back' button the new

[android-developers] encrypt/decrypt the data from content provider

2011-04-05 Thread rashmi
Hi, I am using content provider to access the database. I want to secure my data by encryption. Please let me know, how we can encrypt and decrypt the data from content provider. Thanks -- You received this message because you are subscribed to the Google Groups Android Developers group. To

Re: [android-developers] Re: Amazon appstore order reports

2011-04-05 Thread Justin Giles
As of this morning (8am central), the reports are back up and seem accurate. On Tue, Apr 5, 2011 at 3:15 AM, Michael A. michael.aki...@gmail.com wrote: Hi, I contacted them friday. Got a reply yesterday explaining that they are still having trouble with the reporting. Regards, Michael A.

[android-developers] Re: new developer questions

2011-04-05 Thread Jake Colman
Have you tried googling any of your questions? It's much faster and it will allow you to ask much more targeted questions. hoss...@gmail.com writes: how can i test my app in phone? On Apr 5, 12:26 am, dana tassler dana.tass...@gmail.com wrote: A key to becoming an effective

[android-developers] Re: new developer questions

2011-04-05 Thread Jake Colman
Have you tried googling any of your questions? It's much faster and it will allow you to ask much more targeted questions. hoss...@gmail.com writes: where can i download ADT Plugin for Eclipse? On Apr 5, 11:40 am, hoss7 hoss...@gmail.com wrote: how can i test my app in phone?

Re: [android-developers] Re: new developer questions

2011-04-05 Thread nathan forbes
developer.android.com also has the answers to all of your questions so far man. On Apr 5, 2011 9:06 AM, Jake Colman col...@ppllc.com wrote: Have you tried googling any of your questions? It's much faster and it will allow you to ask much more targeted questions. hoss...@gmail.com

[android-developers] Re: Amazon Market Stats down still - please everybody report it to them

2011-04-05 Thread Jake Colman
n == niko niko20 writes: n Ugh, the Amazon market stats have been down almost a week now. I n mean only five days in and the stats are down already. n If everyone gets together and files reports perhaps it will n encourage them to fix this problem more quickly. Do you really think

Re: [android-developers] Re: Amazon appstore order reports

2011-04-05 Thread David Caunt
Ours are working, cheers for the heads up On 5 April 2011 14:00, Justin Giles jtgi...@gmail.com wrote: As of this morning (8am central), the reports are back up and seem accurate. On Tue, Apr 5, 2011 at 3:15 AM, Michael A. michael.aki...@gmail.comwrote: Hi, I contacted them friday. Got

Re: [android-developers] encrypt/decrypt the data from content provider

2011-04-05 Thread Marcin Orlowski
On 5 April 2011 15:00, rashmi rashmi@gmail.com wrote: Hi, I am using content provider to access the database. I want to secure my data by encryption. Please let me know, how we can encrypt and decrypt the data from content provider. If you encrypt it yourself it will be encrypted. It's

[android-developers] Re: random 404 on google android pages

2011-04-05 Thread Emanuel Moecklin
Same here. Got the 404 for a couple of days now. You can try this: http://www.google.com/support/androidmarket/bin/request.py?contact_type=bugs Good luck ;-) Emanuel Moecklin -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this

[android-developers] Re: Activity without GUI - Activity

2011-04-05 Thread Zsolt Vasvari
Maybe the LAUNCHER stuff is causing a problem? If you have your intent filter set up ok, you should at least receive the intent. On Apr 5, 8:45 pm, Gorka Hernando g.herna...@ogmio.com wrote: Sorry, I forgot to say that after the broadcast is catched withing the onreceive I have this code:

Re: [android-developers] Activity Life cycle question

2011-04-05 Thread Gergely Juhász
Please read first the documentation: http://developer.android.com/guide/topics/fundamentals/tasks-and-back-stack.html http://developer.android.com/guide/practices/ui_guidelines/activity_task_design.html There are more solutions for your problem. For example when the user presses the Back A button

[android-developers] Re: Best Ads for Android Apps

2011-04-05 Thread Russell DuRoss
Check out this link, it looks like they will be doing it the other way around, migrating from Adsense to Admob. http://groups.google.com/group/afma-developers/browse_thread/thread/1776a5763948b741 On Apr 3, 12:21 pm, ko5tik kpriblo...@yahoo.com wrote: Your admob account will be migrated to

[android-developers] Re: HomeScreen Widget frustrating

2011-04-05 Thread Stefan S
Ok. Thanks for this hint... So I'll have to look to something else that i've had in mind... :) On 5 Apr., 13:55, Mark Murphy mmur...@commonsware.com wrote: On Tue, Apr 5, 2011 at 7:10 AM, Stefan S shogu...@gmail.com wrote: I've the Desire HD and I use the standard calendar widget. That is

[android-developers] Re: Amazon appstore order reports

2011-04-05 Thread niko20
Yep working now. :) Thanks Amazon -niko On Apr 5, 8:18 am, David Caunt dca...@gmail.com wrote: Ours are working, cheers for the heads up On 5 April 2011 14:00, Justin Giles jtgi...@gmail.com wrote: As of this morning (8am central), the reports are back up and seem accurate. On

Re: [android-developers] Activity Life cycle question

2011-04-05 Thread lbendlin
I use start activity for result and then signal the take me all the way back as one of the results. This is then cascaded through all the items on the stack. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email

Re: [android-developers] Re: Activity without GUI - Activity

2011-04-05 Thread nathan forbes
Couldn't you just create a normal activity using onCreate and not load any XML layouts? Instead of creating receivers? Then you would have a context to work with to show a Toast and what not... Or am I way off here... I'm fairly new with this also. On Apr 5, 2011 9:53 AM, Zsolt Vasvari

[android-developers] Re: Activity Life cycle question

2011-04-05 Thread Serdel
Thank you - the links are very helpful. I was trying to find sth. like this but couldn't (weak gogling skills I guess :P). Actually I FLAG_ACTIVITY_SINGLE_TOP flag would solve my case (the problem is more complex as more activities join the game, but I didn't want to blur the description) and I

[android-developers] Re: SSL certpath error, Issue in Android or on server side?!

2011-04-05 Thread Sebastian Wagner
it seems like we actually run into a common Issue of multiple users: The ROOT Certificate of Thawte is not imported yet. thawte Primary Root CA (Root) Thawte SSL CA (intermediate) does not work Verisign Class 3 Public Primary Certification Authority (Root) Thawte SGC CA (Intermediate) works !

[android-developers] Continuously running service.

2011-04-05 Thread Mahavir Jain
Hi, I would like to develop an application that will run continuously as a service in the background invisible to user. And after regular interval, it will send the location updates to the server. How can I make my application to run continuously in background invisible to user? Regards,

[android-developers] Re: Source code for StackView(Honeycomb build) available yet?

2011-04-05 Thread Samuh
I tried locating source code for StackView and was not able to find it in the git repository. -- 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

Re: [android-developers] Re: Compilation error using android SDK 2.0 (Camera Preview)

2011-04-05 Thread David Linse
this was already answered earlier the day.. Does this mean Android 2.3? Yes. If yes, hows to retrieve number of cameras on android 2.2 (api level 8)? You cannot. You can only make it work for Android 2.3+ and make things degrade gracefully (not using a camera count) for Android 2.2 and lower

  1   2   >