[android-developers] ScrollView Component Position

2011-12-09 Thread Duygu Kahraman
I have a scrollview and When i pressed a button I am adding some button to scrollview.My problem is when i add button i want to get id which is clicked button. Have you got any idea? How can i get view count from scrollview and getıd from this view. THX. -- You received this message because

[android-developers] accessing sdcard in android 3.2

2011-12-09 Thread guich
Hi, We have Toshiba Thrive and a Galaxy Tab 7Plus that were working fine until they upgrated to 3.2. Now, its impossible to write anything in the microsd folder (/sdcard/extStorages/SdCard). I can read the things in the card, but can't write to it: access denied. Is there a new limitation?

[android-developers] Re: Andrlid ListView focus mess up with two focusable items in each row

2011-12-09 Thread yanguoc...@gmail.com
Thanks. But seems hard to maintain focus in a listview before and after the latyout pass. I check the source code of listview, it did something that may broke the focus in layout pass. On Dec 9, 5:46 am, lbendlin l...@bendlin.us wrote: you will need to remember (per row) which item has focus,

Re: [android-developers] Re: Andrlid ListView focus mess up with two focusable items in each row

2011-12-09 Thread Kostya Vasilyev
You don't really have to go through notifyDataSetChanged to update the UI. If you know that the set of items stays the same (i.e. only their data changed), you can iterate the listview's children and update them bypassing the adapter. -- Kostya 09.12.2011 14:10, yanguoc...@gmail.com пишет:

[android-developers] Re: Remote wipe SD card Invocation Event

2011-12-09 Thread giles ian
On Fri, Dec 9, 2011 at 1:13 PM, giles ian gilesian@gmail.com wrote: Hi Everyone, I want to remote wipe data on sd card. I know the code of wiping the data on SD card. What I am struggling with is how to invoke this code remotely. Options that i have is *1. Broadcast receiver for

Re: [android-developers] How to Remote wipe SD card

2011-12-09 Thread giles ian
On Fri, Dec 9, 2011 at 1:14 PM, giles ian gilesian@gmail.com wrote: haha u are funny daniel, ok so, I want to remote wipe data on sd card. I know the code of wiping the data on SD card. What I am struggling with is how to invoke this code remotely. Options that i have is *1.

[android-developers] Help with live wallpaper and device compatibility

2011-12-09 Thread Saurav
Hi all, I have been working on a live wallpaper application and the thing is, the application does not work on few phones like Micromax a70 and Samsung Galaxy I5510 in spite of them running on Android 2.2 Is this a hardware issue? I do have the min-sdk set as 7 in my manifest. Regards, Saurav

Re: [android-developers] accessing sdcard in android 3.2

2011-12-09 Thread Michael Leung
have you checked the uses-permission android:name=android.permission.WRITE_EXTERNAL_STORAGE/ in there? On Fri, Dec 9, 2011 at 8:05 PM, guich guiha...@gmail.com wrote: Hi, We have Toshiba Thrive and a Galaxy Tab 7Plus that were working fine until they upgrated to 3.2. Now, its impossible

Re: [android-developers] How to Remote wipe SD card

2011-12-09 Thread Daniel Drozdzewski
On 9 December 2011 07:44, giles ian gilesian@gmail.com wrote: haha u are funny daniel, I know. ok so, I want to remote wipe data on sd card. I know the code of wiping the data on SD card. What I am struggling with is how to invoke this code remotely. Stand back and think, what you are

[android-developers] Re: accessing sdcard in android 3.2

2011-12-09 Thread guich
Hi, Yes, i do. The program was working fine until the unit upgraded itself to version 3.2. Then, writting to the card stopped working. 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] How To Store Locations Data In To Cache For Future Use

2011-12-09 Thread Saurabh Patel
HI All Here I want to Create Such a application like which can get location data using wifi ,GPS,GPRS Provider, and than Stores this data into cache memory and i want to use this same location data in future use and display on MAP. It is Possible or not? Please Any body Suggest me the way how

[android-developers] Accessing drawable images from HTML in assets

2011-12-09 Thread RLScott
I am writing some help files in HTML that will be displayed in a WebView. The HTML files are in the assets folder. In those help files I want to refer to some images used in ImageButtons. Those images are in res/drawable. I know I could simply make a duplicate PNG file for the button images in

[android-developers] Re: display.getWidth bug fixed in android 3.2

2011-12-09 Thread guich
Hi Dianne, Lemme explain my problem. All my application is drawn in an offscreen bitmap. When the application starts, i get the maximum width/height of the screen and create a square bitmap. This way, when screen rotates, i don't have to create another bitmap. This prevents some crashes in my

Re: [android-developers] Need Help-File Attachment

2011-12-09 Thread Kiran Kumar Kendole
Thanks, I will try. Regards KIRANKUMARKENDOLE On Thu, Dec 8, 2011 at 11:56 AM, TreKing treking...@gmail.com wrote: On Thu, Dec 8, 2011 at 10:44 AM, Kiran Kumar Kendole k.kirankumar1...@gmail.com wrote: :) Tried. No luck. I see most of the links showing how to attach a file from SD card

[android-developers] Re: Accessing drawable images from HTML in assets

2011-12-09 Thread skink
RLScott wrote: I am writing some help files in HTML that will be displayed in a WebView. The HTML files are in the assets folder. In those help files I want to refer to some images used in ImageButtons. Those images are in res/drawable. I know I could simply make a duplicate PNG file for

[android-developers] Re: Accessing drawable images from HTML in assets

2011-12-09 Thread RLScott
On Dec 9, 7:44 am, skink psk...@gmail.com wrote: RLScott wrote: I am writing some help files in HTML that will be displayed in a WebView.  The HTML files are in the assets folder.  In those help files I want to refer to some images used in ImageButtons.  Those images are in

[android-developers] Debug info translation

2011-12-09 Thread Carlo Kok
i noticed the dx compiler transforms the offsets in the .class LineNumberTable when writing the dalvik code to the new offsets. Is there any way to get a copy of the mapping this uses? We have a custom debugger with some extra info (multiple statements on the same line, col info) which works

Re: [android-developers] How to Remote wipe SD card

2011-12-09 Thread Kristopher Micinski
On Fri, Dec 9, 2011 at 6:50 AM, Daniel Drozdzewski daniel.drozdzew...@gmail.com wrote: On 9 December 2011 07:44, giles ian gilesian@gmail.com wrote: haha u are funny daniel, I know. ok so, I want to remote wipe data on sd card. I know the code of wiping the data on SD card. What I am 

[android-developers] Re: Accessing drawable images from HTML in assets

2011-12-09 Thread skink
RLScott wrote: On Dec 9, 7:44 am, skink psk...@gmail.com wrote: RLScott wrote: I am writing some help files in HTML that will be displayed in a WebView.  The HTML files are in the assets folder.  In those help files I want to refer to some images used in ImageButtons.  Those

[android-developers] Re: Remote wipe SD card Invocation Event

2011-12-09 Thread Oli Wright
Multiple posts on the same subject aren't going to win you any friends ... -- 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] Re: Using google map api key for production

2011-12-09 Thread Spiral123
If the company paid for a google maps key then just contact your account manager at google and ask them. On Dec 7, 3:39 am, sandy sandhyasee...@gmail.com wrote: Hi, I have to develop an application which uses google maps. My company wants to deploy that application in its device. Do i need to

Re: [android-developers] Remote wipe SD card Invocation Event

2011-12-09 Thread TreKing
On Fri, Dec 9, 2011 at 1:43 AM, giles ian gilesian@gmail.com wrote: *3. **Broadcast receiver for **C2DM message* Shortcoming: No Internet How do you propose to *remote* wipe a device with no internet?

Re: [android-developers] accessing sdcard in android 3.2

2011-12-09 Thread TreKing
On Fri, Dec 9, 2011 at 4:05 AM, guich guiha...@gmail.com wrote: I can read the things in the card, but can't write to it: access denied. Google the exact error, including the device(s) you're having the issue with. See if anything comes up.

Re: [android-developers] Remote wipe SD card Invocation Event

2011-12-09 Thread Erwann Abalea
Le vendredi 9 décembre 2011 14:50:03 UTC+1, TreKing a écrit : On Fri, Dec 9, 2011 at 1:43 AM, giles ian gilesi...@gmail.com wrote: *3. **Broadcast receiver for **C2DM message* Shortcoming: No Internet How do you propose to *remote* wipe a device with no internet? IPoAC, as described in

[android-developers] Re: Remote wipe SD card Invocation Event

2011-12-09 Thread lbendlin
Anyone who is smart enough to steal a particular device for the data on the SD card is smart enough to pull the SD card out of the device, or put the device into a metal box. You are wasting your time thinking about corner cases. -- You received this message because you are subscribed to the

[android-developers] RenderScript invokeRoot

2011-12-09 Thread Kloze
hello everyone, i'm master student and i'm studying the RS code. When i try to construct a framework of RS, i found a function invokeRoot which is mHal.funcs.script.invoke. However i can't find the function body and so that i have no idea what will this function do. Is anyone has good ideal could

[android-developers] Re: OpenFeint

2011-12-09 Thread Emanuel Moecklin
I'm using OpenFeint for my apps. The two main reasons I picked it over Scoreloop are (I also evaluated Papaya and Mobage): 1. It’s open source which helps to understand how it works beyond the official documentation and the sample apps. It also helps to identify and fix issues. 2. OpenFeint is the

Re: [android-developers] Remote wipe SD card Invocation Event

2011-12-09 Thread lbendlin
There are a couple of technical difficulties. First of all the phone is likely too heavy for the AC. Then, even if we assume the AC's excrements are toxic - how does it target exactly the SD card? And the request says wipe, not soil anyhow. -- You received this message because you are

[android-developers] external saxon jar in android app

2011-12-09 Thread John Davis
Hello I want to include saxon xml processor in an android app. I have added the app to my project but I get the --core-library message. The jar file includes some system libs I guess. I am not building this app to distribute. I don't care about security problems. I simply want to port a java

[android-developers] Re: accessing sdcard in android 3.2

2011-12-09 Thread guich
Hi, Yes, i found this: http://www.thriveforums.org/forum/toshiba-thrive-general-discussions/4967-problems-after-latest-os-upgrade.html Not sure if this is a problem in the device or in Android 3.2 itself... thanks guich -- You received this message because you are subscribed to the

Re: [android-developers] Remote wipe SD card Invocation Event

2011-12-09 Thread Erwann Abalea
Le vendredi 9 décembre 2011 15:24:55 UTC+1, lbendlin a écrit : There are a couple of technical difficulties. First of all the phone is likely too heavy for the AC. Then, even if we assume the AC's excrements are toxic - how does it target exactly the SD card? And the request says wipe,

[android-developers] Re: VerifyException with Android library project

2011-12-09 Thread Bret Foreman
Tre, Your idea number 2 worked. There's a bug of some sort in the SDK. The work-around is to build the main project AND the library without instantiating any library classes in the main project, THEN instantiate the required classes. If you make any library calls before building both of them then

[android-developers] Re: DataBaseHelpers and multiple tables?

2011-12-09 Thread Chris
On Thursday, December 8, 2011 3:38:51 PM UTC-5, petter wrote: No guidelines or code samples for using databases with multiple tables? Simple. Eg:, from the link you gave: For example to run a query() you can do the following: return database.query(DATABASE_TABLE, new String[] {

[android-developers] Re: OpenFeint

2011-12-09 Thread Michael A.
Hi, I doubt you would be much more pleased with Scoreloop. I have one app with them, but since it's pretty low volume, I don't get much trouble with them currently. From other developers, however, I have heard freequent stories of Scoreloop suffering performance problems and indeed, accessing

Re: [android-developers] Reuse of AlphaAnimation object

2011-12-09 Thread Royston
Mark, Again thanks for the quick reply. Making use of setStartTime does indeed resolve this. I am not sure I fully understand the design decisions in play here but I am well past my sell by date so will live with what we have. Roy -- You received this message because you are subscribed to the

[android-developers] Dialog and Android lifecycle on ICS (Galaxy Nexus)

2011-12-09 Thread Royston
I have an odd but repeatable issue with Dialogs and Android lifecycle on a Nexus (emulated and actual device). I am using showDialog(ID) throughout and dismissDialog(ID) to remove. In the tests I run I show a dialog with and ID of 10 and dismiss it, I then show a dialog with an Id of 9 and

Re: [android-developers] Re: VerifyException with Android library project

2011-12-09 Thread Kristopher Micinski
On Fri, Dec 9, 2011 at 10:41 AM, Bret Foreman bret.fore...@gmail.com wrote: Tre, Your idea number 2 worked. There's a bug of some sort in the SDK. The work-around is to build the main project AND the library without instantiating any library classes in the main project, THEN instantiate the

Re: [android-developers] Re: VerifyException with Android library project

2011-12-09 Thread Kristopher Micinski
P.s., glad you got it working, but still doubtful there's an sdk bug... I should correct, I'm confident that there is *an* sdk bug, I'm just not sure that particular bug is causing this problem :-) kris -- You received this message because you are subscribed to the Google Groups Android

[android-developers] Re: accessing sdcard in android 3.2

2011-12-09 Thread guich
Seems to be really an Android problem, because the same error occurs on both Toshiba Thrive AND Samsung Galaxy Tab7+, *** AFTER UPGRADING THE FIRMWARE TO ANDROID 3.2 ***. Both devices using Android 3.1 works perfectly. -- You received this message because you are subscribed to the Google Groups

[android-developers] onFling() Question

2011-12-09 Thread Derek Winstead
I have an activity that implements GestureDetector.OnGestureListener. This variable: GestureDetector gestureDetector = new GestureDetector(this). This @Override public boolean onTouchEvent(MotionEvent event) { return gestureDetector.onTouchEvent(event); } My application works as expected using

[android-developers] Re: onFling() Question

2011-12-09 Thread skink
Derek Winstead wrote: I have an activity that implements GestureDetector.OnGestureListener. This variable: GestureDetector gestureDetector = new GestureDetector(this). This @Override public boolean onTouchEvent(MotionEvent event) { return gestureDetector.onTouchEvent(event); } My

Re: [android-developers] Reuse of AlphaAnimation object

2011-12-09 Thread Mark Murphy
I would agree that reset() ought to reset it completely -- I was just pointing out a workaround. Glad it's working! On Fri, Dec 9, 2011 at 11:14 AM, Royston roystonpcar...@gmail.com wrote: Mark, Again thanks for the quick reply. Making use of setStartTime does indeed resolve this. I am not

[android-developers] Should I buy my own apps?

2011-12-09 Thread sblantipodi
As title. I bought a galaxy nexus, when I try to download my own apps it ask me for money. Should I really buy my own apps? 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: How is getOrientationMatrix calculated ?

2011-12-09 Thread Frantch
not really :S -- 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] How to Remote wipe SD card

2011-12-09 Thread Jim Graham
giles: I do hope you realize that A) posting the same thing multiple times basically makes it 100% certain that you will never receive a serious response, and B) asking how to do something completely absurd raises that probability to over 100%. So, despite the usual Do Not Feed The Trolls

[android-developers] Ice Cream Sandwich problem? not restarting App

2011-12-09 Thread Royston
This is an issue found on a Galaxy Nexus. The situation is as follows. When my app is sitting with a Dialog box in the foreground, I turn off the phone. I then turn on the phone and go into Camera from the unlock screen. If I then exit the Camera app it returns to my app with the correct

Re: [android-developers] How to Remote wipe SD card

2011-12-09 Thread Jim Graham
On Fri, Dec 09, 2011 at 08:07:46AM -0500, Kristopher Micinski wrote: I'm assuming that the reason for this is some sort of somebody stole my device I want to wipe the SD card... app Most definitely NOT a safe assumption. And even if that were true, if there was such a capability (or at least,

[android-developers] Re: VerifyException with Android library project

2011-12-09 Thread Bret Foreman
kris, You're right, a bug is not an accurate way to describe a hard-to- diagnose failure mode that may be due to a possible platform misconfiguration. Perhaps we should call it job security for Android developers. My main point was to document a possible workaround in the forum in case others

Re: [android-developers] How to Remote wipe SD card

2011-12-09 Thread Kristopher Micinski
Probably not, but I'll assure you 100% that if his answer is something malicious that's what he'll say it's for. kris On Fri, Dec 9, 2011 at 1:10 PM, Jim Graham spooky1...@gmail.com wrote: On Fri, Dec 09, 2011 at 08:07:46AM -0500, Kristopher Micinski wrote: I'm assuming that the reason for

[android-developers] Can not see the custom services in Android Emulator

2011-12-09 Thread RJ
Hi: gurus is there any way I can see the custom services via android emulator. E.g I have created some services but when I got to setting- Applications-Running Services I can not see any one of them. Note I created bunch of them, in process private to application, out process(:process), boot up

Re: [android-developers] How to Remote wipe SD card

2011-12-09 Thread Jim Graham
On Fri, Dec 09, 2011 at 01:36:28PM -0500, Kristopher Micinski wrote: On Fri, Dec 9, 2011 at 1:10 PM, Jim Graham spooky1...@gmail.com wrote: On Fri, Dec 09, 2011 at 08:07:46AM -0500, Kristopher Micinski wrote: I'm assuming that the reason for this is some sort of somebody stole my

Re: [android-developers] Should I buy my own apps?

2011-12-09 Thread Kristopher Micinski
On Fri, Dec 9, 2011 at 12:34 PM, sblantipodi perini.dav...@dpsoftware.org wrote: As title. I bought a galaxy nexus, when I try to download my own apps it ask me for money. Should I really buy my own apps? Thanks. uhh... I mean you have the apks... so... ... what stops you from doing an

[android-developers] Re: onFling() Question

2011-12-09 Thread Derek Winstead
Is there an example of this in action? SDK's aren't very helpful to me. I'm still new to programming Android or Java. Thanks, Derek -- 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] Should I buy my own apps?

2011-12-09 Thread TreKing
On Fri, Dec 9, 2011 at 11:34 AM, sblantipodi perini.dav...@dpsoftware.orgwrote: Should I really buy my own apps? Is that rhetorical? You can't do this anyway. - TreKing

Re: [android-developers] Re: display.getWidth bug fixed in android 3.2

2011-12-09 Thread Dianne Hackborn
That's not what you want. It sounds like you want a largest dimension? There is some hidden code for getting this, but it is not completely correct. We can make a public method for it, but it will need to be fixed to be more accurate. On Fri, Dec 9, 2011 at 4:13 AM, guich guiha...@gmail.com

Re: [android-developers] Dialog and Android lifecycle on ICS (Galaxy Nexus)

2011-12-09 Thread Dianne Hackborn
I'd suggest using fragments and DialogFragment. On Fri, Dec 9, 2011 at 8:24 AM, Royston roystonpcar...@gmail.com wrote: I have an odd but repeatable issue with Dialogs and Android lifecycle on a Nexus (emulated and actual device). I am using showDialog(ID) throughout and dismissDialog(ID) to

[android-developers] Giving users access to our data files

2011-12-09 Thread RLScott
My app creates files that mostly for internal use, but on occasion they could be of some interest to the users on their desktop computer. What is the easiest and most straightforward way to give my users access to the files my app creates? I am creating my files as World Readable. -- You

Re: [android-developers] Giving users access to our data files

2011-12-09 Thread Mark Murphy
Copy them to external storage. Or, use ACTION_SEND and the appropriate MIME type and allow the user to send the files by whatever means is at their disposal (e.g., Dropbox). On Fri, Dec 9, 2011 at 3:03 PM, RLScott fixthatpi...@yahoo.com wrote: My app creates files that mostly for internal use,

[android-developers] How to reduce the size of image from Camera onPreviewFrame !!!!!

2011-12-09 Thread muhammad.ume...@hotmail.com
Hi, My requirement is to save the space on SD Card, so i want to create an app to take picture of size 1kb, is it possible, and if it is possible then what can i do. Thanks and Regards, umer -- You received this message because you are subscribed to the Google Groups Android Developers

[android-developers] Re: Should I buy my own apps?

2011-12-09 Thread sblantipodi
No, really. I'm trying to buy my apps and it ask me for money. What is the problem? On 9 Dic, 20:35, TreKing treking...@gmail.com wrote: On Fri, Dec 9, 2011 at 11:34 AM, sblantipodi perini.dav...@dpsoftware.orgwrote: Should I really buy my own apps? Is that rhetorical? You can't do this

[android-developers] Re: Should I buy my own apps?

2011-12-09 Thread sblantipodi
When I search for my apps on the market, the market says that my apps costs 3€, I click on the 3€ button and than it says that I can't buy the software but it doesn't let me install it. Why I can't install my own apps from the market? Please help. Thanks. On 9 Dic, 21:44, sblantipodi

[android-developers] how to build libjingle for android?

2011-12-09 Thread Геннадий Дубина
Hi all I want to add voice and video chat to the app. i tried use asmack with jingle but it doesn't work. the app can't bind to stun server. This lib doesn't work on desktop too. So i have foubd C lib - libjingle(google code), but i can't find instruction how to build it for android. Maybe

Re: [android-developers] Should I buy my own apps?

2011-12-09 Thread Raymond C. Rodgers
On 12/9/2011 2:35 PM, TreKing wrote: On Fri, Dec 9, 2011 at 11:34 AM, sblantipodi perini.dav...@dpsoftware.org mailto:perini.dav...@dpsoftware.org wrote: Should I really buy my own apps? Is that rhetorical? You can't do this anyway. Actually, I needed to do that very thing some months

[android-developers] i have a task , mobile tracking android app , and i am new in android programming .

2011-12-09 Thread ahmed mahmoud eltaher
1- app start-up when mobile is on.( automatic). 2- mobile sent its position to server, every 5 min . 3- data sent must be encryption . i am a starter in android programming , i asked there is an API (Google API ) return position of mobile to server , and i can encrypted data before sent it to

[android-developers] Error Installing Android SDK Platform Tools

2011-12-09 Thread Alex Wolfe
I have downloaded eclipse, the android SDK starter package, and installed the Developer Tools. Following the guide on developer.android.com exactly. After the developer tools have installed, and eclipse restarts I get two error messages: 1: SDK Platform Tools component is missing! Please use the

[android-developers] i want to use my own page place_order

2011-12-09 Thread sonu
setListAdapter(new ArrayAdapterString(this, android.R.layout.simple_list_item_multiple_choice, results)); getListView().setTextFilterEnabled(true); i want to use my own page place_order and replacing simple_list_item_multiple_choice .what should i do. thanks for

[android-developers] Android Pakistan

2011-12-09 Thread Bilal Akhtar
Can developers sell their application from Pakistan? -- 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] Android Subtitle support in media framework

2011-12-09 Thread anil
Does Android support subtitle during video playback ? I need to enable the subtitle in android media framework. -- 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] Suspended app

2011-12-09 Thread Bryan Stinchfield
Hi everyone, been searching and searching but not finding any answers or good information. Am hopeful that someone can help me. To start with, yes, I've searched groups and google for answers but there don't seem to be any. My app, Angry Birds Walkthrough Portal, was suspended from the Android

[android-developers] Root Access on Android SDK

2011-12-09 Thread CSEKHAR
I have installed SQLite Editor app on the emulator but its showing that ;The application don’t have root permission. Tried apps like SuperUser to provide root access bur unable to do the same. What is the best way to gain root access from Emulator itself? Please post the step by step process to

[android-developers] 关于金山电池医生

2011-12-09 Thread 皓 陈
为什么部分手机型号在谷歌电子市场搜索不到金山电池医生,例如小米手机 me525 等,请告知一下原因。谢谢 -- 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] Viewing two activities on one screen through that both can navigate at a time ..

2011-12-09 Thread Arfin
I have created two activities, one list view and another to edit them. I need to display both the activities on one screen at the same time so that i can select any item from the list view and can go for edit right away. Means I am creating a button for edit at the bottom and list view will

[android-developers] ListView

2011-12-09 Thread Arfin
-How to add items dynamically(one by one) in the ListView??? -i.e I m downloading the data from the server one by one and i need to add it in the listview in the same way. -What i am trying is, I have created two activity class one of them is ListActivity class and another is normal Activity

[android-developers] Re: Want to join this group

2011-12-09 Thread FRANCISCO
Just go to this link, there you can find all the groups http://developer.android.com/resources/community-groups.html On Dec 7, 4:42 am, chethan chetanhe...@gmail.com wrote: Hi, I am Chethan, a software engineer currently working on android.  Would you please allow me to join this group.

[android-developers] Audio backwards compatibility of ICS

2011-12-09 Thread gew
Has anyone had trouble porting an application that uses the microphone to ICS? Interestingly enough, my application works when compiled for 2.3.3 and installed on a 4.0 device. But when I compile for 4.0 it no longer captures audio. -- You received this message because you are subscribed to

[android-developers] Tricky layout issue on custom ViewGroups

2011-12-09 Thread Florent Pillet
I'm having an issue that is hard to figure out, where requestLayout() calls from child views don't seem to be honored. Here is what I'm doing: - my activity has a main FrameLayout in MATCH_PARENT mode for its main view - my containers derive from ViewGroup. Mostly, all items have absolute

[android-developers] Recommended reading to learn Java for Android

2011-12-09 Thread Tony Houghton
I want to develop/port games for Android. Most of the Android books assume some knowledge of Java which I don't really know yet. I'm an experienced C programmer (including use of GObject so I'm familiar with concepts like Interfaces), and have done a bit of C++, so I don't think I'll have much

[android-developers] Recommended reading to learn Java for Android

2011-12-09 Thread Tony Houghton
I want to develop/port games for Android. Most of the Android books assume some knowledge of Java which I don't really know yet. I'm an experienced C programmer (including use of GObject so I'm familiar with concepts like Interfaces), and have done a bit of C++, so I don't think I'll have much

[android-developers] To create toast, when clicking on any application installed on device.

2011-12-09 Thread akash jain
this is my first android project, and there is a problem. I want to create a toast as a notifier when any application started, by user click on the devicefor example when user click on android gallery the toast will be generated Gallery started...what can i do to solv this...? -- You

Re: [android-developers] Recommended reading to learn Java for Android

2011-12-09 Thread Kristopher Micinski
On Fri, Dec 9, 2011 at 11:37 AM, Tony Houghton h...@realh.co.uk wrote: I want to develop/port games for Android. Most of the Android books assume some knowledge of Java which I don't really know yet. I'm an experienced C programmer (including use of GObject so I'm familiar with concepts like

[android-developers] http://http://dl-ssl.google.com/android/repository/repository.xml:8600 refused

2011-12-09 Thread 明 林
The problem is I dowanload Android SDK,both sites download URLs seem to be blocked (throws a connection refused exception) see: Fetching http://dl-ssl.google.com/android/repository/addons_list-1.xml Failed to fetch URL http://dl-ssl.google.com/android/repository/addons_list-1.xml, reason:

[android-developers] Mobile Logs Application

2011-12-09 Thread Jennifer Smith
I recently stumbled upon an application called Mobile Logs on my android in settingsmanage applicationsthird party. When I look at it, it appears to be some sort of tracking application that states it has the ability to intercept outgoing calls, read text messages, internet searches, find phone

[android-developers] Why would my background disappear when adding a button?

2011-12-09 Thread SkolVikingsGuy
Why would the code below fail? I have a blue relativeLayout in my main.xml. On click I'm adding a green button. When running on my Motorola Xoom I click the screen and I see the green button show up, but the background changes from blue to black. If I click again my blue background shows. Click

[android-developers] Execute code when device is turned back on.

2011-12-09 Thread Bamboomy
Dears, I've looked around a bit on google, stack overflow and the android dev site but can't find quite what I'm searching for... The idea is to implement a lock for android that requires a code to unlock your device. So: 1) Normally the app doesn't do anything at all. (this is the easy part

[android-developers] ListView and setImageBitmap

2011-12-09 Thread Mettan
Hello, I have a listview with 100-500 row, each row can contain three images. Here, my getview : @Override public View getView(int position, View convertView, ViewGroup parent) { Viewvi = convertView; ViewHolder holder; int index =

[android-developers] Native Thread Crashes(Segmentation fault) on Activity change

2011-12-09 Thread Pradeep Appala
Hi I am new to Android wanted to port my linux application to android My Android App has 3 activities 1)In the first activity i load my native library (which creates multiples threads in native code.) Native code(threads) work fine till i change to another activity. If app switches to second

[android-developers] When the phone receives a pairing request from another bluetooth device, sometimes a pairing dialog pops up, sometimes just a notification.

2011-12-09 Thread jimmy
Can somebody tell me the purpose of the following segment codes in the method onReceive() in BluetoothPairingRequest.java Why sometimes a pairing dialog pops up, and sometime just a notification when the phone receives a pairing request? Thanks. if (powerManager.isScreenOn()

[android-developers] re: unable to download sdks

2011-12-09 Thread topazmax
i was able to download the sdks by running installer_r15-windows.exe, after it finishes, it runs the sdk manager. but still cant do it any other way! is it possible the ADT tools didn't install properly? and if so how do i uninstall to try again? -- You received this message because you are

[android-developers] Problems syncing repo first time

2011-12-09 Thread Matt Sealey, Genesi USA, Inc.
Hi, Setting up a build box here, lots of CPUs and RAM for Android tinderbox and general development and I keep running into the strangest errors.. following the instructions to the letter I get to repo sync (with --trace to show what's going wrong) and at random, several parts of the repo do not

[android-developers] Problem with MTP not refreshing in Windows

2011-12-09 Thread Jon
Hello, I am having a problem getting the MTP service to refresh the file list in Windows. Since USB mounting is not available on newer devices, they use MTP to transfer files. I am using Windows 7, Galaxy Nexus (also a problem on Xoom, probably all 3.X and higher devices). Here are steps for the

[android-developers] how to edit or add metadata in .3ga(encoded by AAC)

2011-12-09 Thread 훈섭 정
Please kindly let me know how to edit or add metadata in .3ga(encoded by AAC). is it possible on Android platform? -- 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

Re: [android-developers] Message Handler repeating messages

2011-12-09 Thread Quibriya Gulam
No its just an example of an code. I'm not sure what you mean by using the debugger to step through to step through and see the call stack! Can you supply a step by step guide? I'm kind of a noob. On 8 December 2011 20:16, TreKing treking...@gmail.com wrote: On Thu, Dec 8, 2011 at 12:27 PM,

[android-developers] case insensitive unique text column and german umlauts

2011-12-09 Thread Fritz Schwarz
Hi, I want to create a table with a unique textcolumn. It should be case insensitive, so for example only one of example or Example can be stored. It works by using the NOCASE collate. But there is problem with german umlauts and - I think - other nonstandard ascii characters. So i used the

[android-developers] Im trying to unlock boot loader on xperia play need help!

2011-12-09 Thread Quibriya Gulam
I'm following the Sony Ericsson (SE) website to unlock the boot loader. but it doesn't seem to work. On your computer, you will be asked for drivers. Point to the usb_driver folder where you placed the android_winusb.inf-file, and select the Android Boot loader Interface-file. Nothing comes up

[android-developers] remove files and directories when desinstalling application

2011-12-09 Thread guibsou
Hi all ! Is there a method to remove directories (directories and files created on the sdcard by the application) when i remove this same application ? i don't find any solution on the web. thank you for answers Guibsou -- You received this message because you are subscribed to the Google

[android-developers] Re: Detect if the device is a tablet or phone

2011-12-09 Thread MarkG123
Try this method. Works for me... Might not be the proper way and I have yet to see what the ICS effect will be, but for now I can support tablets and phones in the same apk, with both a phone and tablet layout.. http://tinyurl.com/86n632x -- You received this message because you are

[android-developers] InputMethodManager and mServedView

2011-12-09 Thread Sam
The InputMethodManager is connected to an EditText view. After orientation change, I create a new EditText and this one now has focus. However, the IMM does not change its mServedView to the new EditText. Is there anyway to connect the new edit text to the IMM. I dont see any APIs in IMM,

[android-developers] unable to download abd install sdks

2011-12-09 Thread topazmax
i cant seem to download anything with the sdk download manager (from eclipse or otherwise) i get an acces denied error immediately after the 1/2 download message -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send

[android-developers] Error in NativeDaemonConnector

2011-12-09 Thread Jason Chang
Hi; I'm trying to build the Android 2.3.3 for Nexus One (HTC Passion) on my Ubuntu 10.04 64 bit machine. I first ran the extract-files.sh and get all the proprietary files from the HTC Passion device which was loaded with Android 2.3.3. I could successfully build the code and flashed the boot,

[android-developers] SDK

2011-12-09 Thread Teresa Halderman
I am having troubles downloading eclipse application and the SDK. The SDK is not working. -- 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

  1   2   >