Re: [android-developers] loadData on a WebView

2011-09-05 Thread Miguel Morales
No, it's never ok to touch any views outside of the UI thread. On Mon, Sep 5, 2011 at 9:52 PM, bob wrote: > Is it ok if I call loadData on a WebView from a background thread? > >        wv.loadData(html, "text/html", "utf-8"); > > It seems to work, but it feels naughty. > > -- > You received this

[android-developers] Re: Combining Canvas with OpenGL

2011-09-05 Thread Indicator Veritatis
If that were a good thing to do, then why do you think the online Javadocs for Android recommend using GLSurfaceView or SurfaceView? It really is much simpler if you do not try to mix the APIs. The two classes above help you keep track of a lot of OpenGL details, so you should use them; but if you

[android-developers] Re: Error starting app. Must force a close

2011-09-05 Thread Indicator Veritatis
Mark- Your advice is good, as always, but I think the OP will be in need of advice that is a little more specific, namely, HOW is he going to find the cause of the error using adb logcat etc? Of course, since all we know is that he sees that one error, it is hard to get more specific. But I belie

[android-developers] Re: How to detect if a view is on screen

2011-09-05 Thread Indicator Veritatis
I would have said "use ScrollView", but that too is limited to vertical scrolling. So now I have to ask: do you really HAVE to have the scrolling done horizontally? You might be in for a harder time if you insist on this. On Sep 5, 11:29 pm, Marc Van Daele wrote: > Hello Ed, > > Thanks for your a

Re: [android-developers] Re: Combining Canvas with OpenGL

2011-09-05 Thread Miguel Morales
the simple way is to use a relativelayout as a base, add the glsurfaceview, and the regular canvas surfaceview on top of that. the only thing is that opengl uses a different coordinate system than the canvas, so you'll have to adjust your math accordingly. On Mon, Sep 5, 2011 at 11:35 PM, Indicato

Re: [android-developers] Re: Programming in Android

2011-09-05 Thread Tareq Al-Ma'mari
*Thank you all , * *it is helpful information and good beginning * * * -- 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 an

Re: [android-developers] Re: How to detect if a view is on screen

2011-09-05 Thread Marc Van Daele
Hello Ed, Thanks for your answer but I'm not sure a ListView will work (though I will look at the video). Isn't a ListView limited to Vertical scrolling? (at least the javadoc says so) Kind Regards, Marc 2011/9/6 Ed > Hi Marc, > > Have a look at ListView. It's probably done most of the hard

[android-developers] How to convert voice to text

2011-09-05 Thread HariRam
Thanks for previous replies, Is it possible to convert voice as a text. i searched through website, there is more guidance for text to speech but none for voice to text. if anyone have idea for how to transmit voice to text pls guide me. -- Hariram Lakshminarayanan -- You receive

[android-developers] Accessing activity implementing methods in another class

2011-09-05 Thread krishna chaitanya
hi guys, Basically my 1. Activity is implementing an interface for downloading 2. A thread is called from the activity 3. Download images actually performs how download should take place. So, my question is how do call the methods in activity. Is it just by passing the "this pointer" ? Is it a g

[android-developers] getProgress

2011-09-05 Thread bob
How can I tell when a WebView has fully loaded a page? The getProgress method returns 100 percent when the images haven't even been fully loaded. -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-

Re: [android-developers] Re: Help needed on BUtton CLick

2011-09-05 Thread zheng wu
set the margin property of buttoneg:android:layout_margin='' 2011/9/5 sam > I got it fixed Ratheesh , i had a mistake in ma manifest file .. > > Can u please guide me how to set the space between the buttons ??? > > Regards, > Sam > > On Sep 5, 11:53 am, Ratheesh Valamchuzhy wrote: > > hi S

[android-developers] Re: Animation not repeat

2011-09-05 Thread Hadas Mobile
public SampleView(Context context, String shape, float[] params) { super(context); setFocusable(true); setFocusableInTouchMode(true); cv = new CanvasView(context, shape, params); if (demo) {

[android-developers] loadData on a WebView

2011-09-05 Thread bob
Is it ok if I call loadData on a WebView from a background thread? wv.loadData(html, "text/html", "utf-8"); It seems to work, but it feels naughty. -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email

[android-developers] Re: Failed to register input channel?

2011-09-05 Thread Ubuntu guy
Is this the main UI thread of the app? Could you share the entire log (pid and tid) along with a reproducible use case? java.lang.RuntimeException: Failed to register input channel. Check logs for details. at android.view.InputQueue.nativeRegisterInputChannel(Native Method) at android.view.InputQ

[android-developers] Combining Canvas with OpenGL

2011-09-05 Thread Dancing Fingers
Does any one know if you can map a View canvas onto an OpenGL surface in Android? Just curious. Chris -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe

Re: [android-developers] Error starting app. Must force a close

2011-09-05 Thread Nikolay Elenkov
On Tue, Sep 6, 2011 at 8:19 AM, Mark Murphy wrote: > Use adb logcat, DDMS, or the DDMS perspective in Eclipse to examine > LogCat and look at the stack trace associated with your error. > More importantly, don't use HTML mails *HUGE BOLD LETTERS*. It's very likely to get your mails ignored. --

[android-developers] Re: Ask about FLAG_ACTIVITY_REORDER_TO_FRONT

2011-09-05 Thread teddy
Plz help me On Sep 5, 6:22 pm, teddy wrote: > Hi all, > I have two task: > bar:B,Y > foo: A,X,C > Now C call startActivity to call B with > FLAG_ACTIVITY_REORDER_TO_FRONT. > After this call these tasks are: > Case I: > foo: A,X,C > bar:Y,B > or: > Case II: > bar:Y > foo: A,X,C,B > According the

[android-developers] Re: How to detect if a view is on screen

2011-09-05 Thread Ed
Hi Marc, Have a look at ListView. It's probably done most of the hardwork for you if you just write your own adapter. Just make sure you get your getView correct. Watch a couple of Romain Guy's videos from Google I/O e.g. http://www.youtube.com/watch?v=wDBM6wVEO70 Should help get you started

[android-developers] Re: Once again the INSTALL_FAILED_INSUFFICIENT_STORAGE error

2011-09-05 Thread Ed
If it's not a device storage issue then the first place I would start is running "adb kill-server" and "adb start-server" to restart adb. Not 100% sure what your problem is - you can use the adb push command but cannot use the adb install command? Don't forget that internal memory and SD memor

Re: [android-developers] Re: locking app: How I know when an

2011-09-05 Thread Jim Graham
On Mon, Sep 05, 2011 at 03:02:52PM -0700, ngbl wrote: > I need to block apps already installed on the device... how I do that? > I don't understand, sorry :( It's actually quite simple: don't install the apps you don't want to allow to run. If you're trying to do this to someone else's device,

Re: [android-developers] Error starting app. Must force a close

2011-09-05 Thread Mark Murphy
Use adb logcat, DDMS, or the DDMS perspective in Eclipse to examine LogCat and look at the stack trace associated with your error. On Mon, Sep 5, 2011 at 11:05 PM, NWD Sports wrote: > I have an app that I created that worked perfectly whenever I debugged it. > Now whenever I try to run it, I get

Re: [android-developers] Re: locking app: How I know when an application is about to begin.

2011-09-05 Thread Kristopher Micinski
You aren't going to be able to do this for apps already installed on the device. It simply won't be possible, this would violate a lot of security considerations. The only way in which I can see this being remotely possible is if you had a bunch of apps that were using a third party service to a

[android-developers] Error starting app. Must force a close

2011-09-05 Thread NWD Sports
I have an app that I created that worked perfectly whenever I debugged it. Now whenever I try to run it, I get an error saying “unexpected error com.myPackageName.app could not be started.” the only option I get is to force a close of the app. Does anyone know what is wrong? Nicholas L. – NWD S

Re: [android-developers] OpenGL Samsung Galaxy S2 S II Problem With Rotation

2011-09-05 Thread emanuele padula
Thank you Christopher. I'll do some test regarding the mipmapping, but i'm not sure that it will work. Thank you for you suggestion. 2011/9/5 Christopher Van Kirk > I'm seeing a similar problem on that device, but I haven't spent any time > looking for an answer yet. I see that you're using VBOs

[android-developers] Re: Nexus Prime, 1280x720 display, huge resolution.

2011-09-05 Thread Zsolt Vasvari
I was being sarcastic On Sep 5, 6:15 pm, Daniel Drozdzewski wrote: > On 5 September 2011 08:21, Zsolt Vasvari wrote: > > > 1280x720 is useless until Apple makes it, then it becomes Retina+ > > (tm). > > Guys, > > Not sure where are we going with this... Pushing the technological > envelope

Re: [android-developers] Re: locking app: How I know when an application is about to begin.

2011-09-05 Thread NWD Sports
Sorry I thought you wanted login. To know when an app is touched you’re going to need to tombstone it first. Then I would try setting up a resource listener to check the available resources. If an app is launched, the available resources would decrease, and the your app would then do whatever yo

[android-developers] Re: locking app: How I know when an application is about to begin.

2011-09-05 Thread ngbl
Hi NWD thanks for answer. " ... After you request a beta invite, it’s super simple to set up and you get a login and backend for your app absolutely free. It’s one of the best 3rd part services I’ve used for Android." I need to block apps already installed on the device... how I do that? I don't

[android-developers] XMPP asmack lib & Proguard obfuscation

2011-09-05 Thread Kaamel
Hello fellow developers, I wonder if anyone here has used the asmack XMPP library with Proguard. From the documentation (and doing some web search) for Google Talk one needs to use: user name: user email (including @gmail.com) password: user password host: talk.google.com port: 5222 service: g

Re: [android-developers] Re: locking app: How I know when an application is about to begin.

2011-09-05 Thread NWD Sports
You can do the login part with Parse. After you request a beta invite, it’s super simple to set up and you get a login and backend for your app absolutely free. It’s one of the best 3rd part services I’ve used for Android. From: ngbl Sent: Monday, September 05, 2011 5:12 PM To: Android Develope

[android-developers] Re: how to insert image background of button

2011-09-05 Thread Jeremy Dagorn
Hi, What about myButton.setBackgroundResource(R.drawable.myimage); with your picture stored in the drawable project directory? Best On Sep 5, 9:17 am, Duygu Kahraman wrote: > What does it mean? Do you want to insert image to background and then insert > button? > > 2011/9/5 Shital Suryawanshi

[android-developers] Re: Pause MediaRecorder

2011-09-05 Thread Jeremy Dagorn
Hi, By pause, you want to stop the recording for a while, and continue it after that's it? What about, MediaRecord.stop()? http://developer.android.com/reference/android/media/MediaRecorder.html#stop%28%29 Regards, Jeremy On Sep 5, 9:50 am, Akhilesh Mani wrote: > Hi, > Is there any way to pause

[android-developers] Re: locking app: How I know when an application is about to begin.

2011-09-05 Thread ngbl
Hi Kris and NWD, thanks for answer ... Well, I just want to display an activity where the user put the password and then the application begins if the password is correct. I've seen this in android market, on apps without cost. These is so hard to do? I've read ClassLoader, DexClassLoader for d

Re: [android-developers] OpenGL Samsung Galaxy S2 S II Problem With Rotation

2011-09-05 Thread Christopher Van Kirk
I'm seeing a similar problem on that device, but I haven't spent any time looking for an answer yet. I see that you're using VBOs...I've read somewhere that some devices have trouble with them but I don't know if it's true or which devices might be affected. I also know that in my case I'm also

Re: [android-developers] Honeycomb (Android 3.2) emulator slow

2011-09-05 Thread Christopher Van Kirk
On 9/5/2011 7:18 PM, Jan Burse wrote: Original Title of Thread was: Honeycomb (Android 3.2) emulator slow And it was then hitchhiked by Christopher Van Kirk, maybe unknowingly, i.e. not mastering his mail tool. Dianne Hackborn schrieb: I am an engineer on the core Android frameworks (android.a

Re: [android-developers] how can I know when an application will start

2011-09-05 Thread TreKing
On Mon, Sep 5, 2011 at 10:29 AM, ngbl wrote: > But I can't find the way of catch the intent of an activity when starts on > the launcher. > There is no such thing, AFAIK. Apps of this nature are exploiting hacks or private APIs. --

Re: [android-developers] locking app: How I know when an application is about to begin.

2011-09-05 Thread NWD Sports
The only way to do that would be to access the activity stack and block an application from gaining resources. The Android OS would block anything of the sort so you would have to do a LOT of work to fool Android and let your app control the stack. Plus I don’t even think there is a permission f

Re: [android-developers] locking app: How I know when an application is about to begin.

2011-09-05 Thread Kristopher Micinski
This really sounds like it shouldn't exist. At the very least, you won't be able to capture random intents from other applications without a bit of work, what kind of applications are you trying to block from being installed? Keep in mind, that you can't just expect your app to sit in the backgro

[android-developers] locking app: How I know when an application is about to begin.

2011-09-05 Thread ngbl
I'm working on an application to block other apps installed on the phone. I've seen several in the android market but want to learn to make one by myself. I've been reading a lot of the API but I can't get something that help me. Maybe if someone can help me, I can figure out what I have to do.

[android-developers] Once again the INSTALL_FAILED_INSUFFICIENT_STORAGE error

2011-09-05 Thread Palsson
Hello, Hardware: AM3517 OS: Froyo release Suddenly I'm not able to install, run and debug applications on my target, using eclipse. I'm configuring ADB over Ethernet. At the same time I can use the adb tool to push the applications onto the target and execute.. Which button did I possibly push,

[android-developers] ADB could see Samsung Galaxy Tab 10.1 but now it can't!

2011-09-05 Thread RodneyJLambert
I have a Ubuntu development system that I have been using to do Android development and until this week the ADB would detect my Galaxy Tab 10.1, now the ADB will not list the tab as an available device. lsusb shows : $ lsusb Bus 002 Device 046: ID 04e8:685e Samsung Electronics Co., Ltd Bus 002 De

[android-developers] My First Android Project

2011-09-05 Thread Krish Gvr
Hi, I completed the fundamentals of android application development. Now I have to do one project in android. What actually I want to develop is a face modeling application. First option in the project is, if a user takes a photo with cell phone, he must be able to make it as the background of app

[android-developers] how can I know when an application will start

2011-09-05 Thread ngbl
hi! I'm working on an application that blocks other apps on the device. I've seen several of this on android market. But I can't find the way of catch the intent of an activity when starts on the launcher. Somebody can help me please? -- You received this message because you are subscribed to t

Re: [android-developers] android.git.kernel.org down?

2011-09-05 Thread Robert Thau
The android source mirrors at Github are still available, if you're looking to browse --- http://github.com/android On Mon, Sep 5, 2011 at 1:35 PM, skyman wrote: > Hello, > > I'm trying to check something in android source but > http://android.git.kernel.org/ shows only "dreams of electric sheep

[android-developers] handle activity stack cicle

2011-09-05 Thread Dayvid Victor
Hello, I have the Activity A, B1, B2, C: start with A, than choose go to B1 or B2; if B1, than go to C, and than back to B1 *if B2, than go to C, and (if requested) go to B1* this part is where I'm stuck, how can I start a new Cicle with the stack with stack (A, B1) from B2? so far, C calls A p

Re: [android-developers] android.git.kernel.org down?

2011-09-05 Thread Mark Murphy
On Mon, Sep 5, 2011 at 1:35 PM, skyman wrote: > I'm trying to check something in android source > but http://android.git.kernel.org/ shows only "dreams of electric sheep" at > least from few days. > Something has changed? kernel.org was hacked last week. Everybody (Linux included) is pretty much

Re: [android-developers] Re: error generate on application launching time

2011-09-05 Thread TreKing
On Mon, Sep 5, 2011 at 12:04 PM, R.B Niranjan wrote: > my friend u said to me that i use LogCat and debug again but how to do that > things > Read the documentation section on debugging. - TreKing

[android-developers] Re: How to detect if a view is on screen

2011-09-05 Thread Marc Van Daele
I didn't see my question (see below) appear in the group yet so I'm resending. Sorry if it appears twice. Marc 2011/9/3 vdaele > Hello, > > Suppose I have a horizontal scrollable list of say 100 movie posters > (each in its own View) > of which only 4 Views fit on the screen at the same time. >

[android-developers] android.git.kernel.org down?

2011-09-05 Thread skyman
Hello, I'm trying to check something in android source but http://android.git.kernel.org/ shows only "dreams of electric sheep" at least from few days. Something has changed? -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to thi

[android-developers] Re: error generate on application launching time

2011-09-05 Thread R.B Niranjan
my friend u said to me that i use LogCat and debug again but how to do that things On Sep 5, 8:38 pm, TreKing wrote: > On Sun, Sep 4, 2011 at 3:14 PM, R.B Niranjan wrote: > > when i open that application that i face a error "the application generate > > unexptional error forcily close it" > > Us

[android-developers] Re: Advice Wanted: Common Authentication App for Suite

2011-09-05 Thread Parvesh Malhotra
If you want to authenticate via a common database,you can create a wcf service and authenticate via that and may be save a auth token which can be reused by othr parts of the app On Sep 4, 6:30 pm, "Greg D." wrote: > Just got done with "Hello, Android" from Pragmatic and have my first > questio

[android-developers] Re: How to create a x509 certificate?

2011-09-05 Thread Simon Trigona
Awesome, thanks for that. -- 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] How do you get input?

2011-09-05 Thread sblantipodi
As title. I need a simple way that asks the user to input some data and let him press ok or cancel to enter the data. What is the easyest way to do it that works ok from android 2.1 to android 3.2? I'm using the AlerDialog with an EditText in it. This alert is shown on the top of my canvas. voi

Re: [android-developers] Re: Advice Wanted: Common Authentication App for Suite

2011-09-05 Thread NWD Sports
Try http://www.parse.com. They have a login application you can integrate into your existing apps. Integrating a WCF service into an Android application is a nightmare due to the fact that it isn’t meant for mobile platforms at all. From: Greg Deward Sent: Monday, September 05, 2011 11:47 AM T

Re: [android-developers] Re: Advice Wanted: Common Authentication App for Suite

2011-09-05 Thread Mark Murphy
On Mon, Sep 5, 2011 at 11:47 AM, Greg Deward wrote: > Anyone? Please bear in mind that Sunday is part of the weekend, and today is a holiday in the US. So, the fact that you did not receive a response in 18 hours is not unexpected. >> How would you recommend creating a common authentication / lo

[android-developers] Re: Nexus Prime, 1280x720 display, huge resolution.

2011-09-05 Thread sblantipodi
Alessandro, mobile apps are designed to work with fingers, porting them on TV is simply unuseful. On Sep 5, 12:56 pm, Alessandro Pellizzari wrote: > Il Mon, 05 Sep 2011 02:39:16 -0700, sblantipodi ha scritto: > > > I have a 24" display and is a 1920x1200, > > Me too. > > > how a screen of about 4

[android-developers] Re: Advice Wanted: Common Authentication App for Suite

2011-09-05 Thread Greg Deward
Anyone? On Sep 4, 2011, at 6:30 PM, Greg D. wrote: > Just got done with "Hello, Android" from Pragmatic and have my first > question. My apologies for the newbie-ish-ness. I'm coming from the > Windows / C# / .NET world... > > How would you recommend creating a common authentication / login >

Re: [android-developers] Help me with adding overlays in google maps

2011-09-05 Thread Logesh rajendren
thank you , i will look into it. On Mon, Sep 5, 2011 at 8:20 AM, TreKing wrote: > On Mon, Sep 5, 2011 at 6:24 AM, Logesh rajendren wrote: > >> *When i execute this application , i m getting the following error .* >> >> * >> "application MapsOverlay(process.com.maps) has stopped unexpectedly. >>

Re: [android-developers] How to hold particular web view

2011-09-05 Thread TreKing
On Mon, Sep 5, 2011 at 5:09 AM, ANKUR GOEL wrote: > can anybody tell me how to hold the particular web view . Did you read your own question? Did it make sense to you? - TreKing

Re: [android-developers] error generate on application launching time

2011-09-05 Thread TreKing
On Sun, Sep 4, 2011 at 3:14 PM, R.B Niranjan wrote: > when i open that application that i face a error "the application generate > unexptional error forcily close it" > Use LogCat and your debugger to debug your app. --

Re: [android-developers] Multi Screen help needed !!!

2011-09-05 Thread TreKing
On Mon, Sep 5, 2011 at 1:09 AM, sam wrote: > but when i click on the button2 it force closes. Use LogCat and your debugger to debug your app. - TreKing

[android-developers] Re: Can we create two ThreadPoolExecutor running on android?

2011-09-05 Thread Streets Of Boston
You can execute AsyncTasks from services (or background threads), as long as the first ever AsyncTask in your process is created in a UI Thread (thread with Looper). I found this out when running JUnit tests... -- You received this message because you are subscribed to the Google Groups "Andro

Re: [android-developers] OutOfMemoryError

2011-09-05 Thread TreKing
On Mon, Sep 5, 2011 at 2:21 PM, NWD Sports wrote: > Yes on my version of the SDK manager for some reason increasing SD card > size increases the RAM size as well. I don’t know why but that is what I > assumed it did for everyone. Sorry for any confusion. Interesting. Thanks for clarifying. ---

Re: [android-developers] Create an animation over an Overlay

2011-09-05 Thread Logesh rajendren
ok ok. sorry . On Mon, Sep 5, 2011 at 8:21 AM, TreKing wrote: > On Mon, Sep 5, 2011 at 6:11 AM, Logesh rajendren wrote: > >> Sorry guys , i need help to create overlays . can u help me ? > > > A - Don't hijack threads. > B - No one can help you if you don't indicate what help you need. > > > > -

Re: [android-developers] OutOfMemoryError

2011-09-05 Thread NWD Sports
Yes on my version of the SDK manager for some reason increasing SD card size increases the RAM size as well. I don’t know why but that is what I assumed it did for everyone. Sorry for any confusion. From: TreKing Sent: Monday, September 05, 2011 11:16 AM To: android-developers@googlegroups.com

Re: [android-developers] Including data with app

2011-09-05 Thread cameronmeek66
Thanks Mark. I have been considering the download option but that would be the only reason that my app would need internet access. Maybe I will just code up both techniques and then decide which one I think works best for my app. On Mon, Sep 5, 2011 at 7:06 AM, Mark Murphy wrote: > n Sun, Sep 4,

Re: [android-developers] Create an animation over an Overlay

2011-09-05 Thread TreKing
On Mon, Sep 5, 2011 at 6:11 AM, Logesh rajendren wrote: > Sorry guys , i need help to create overlays . can u help me ? A - Don't hijack threads. B - No one can help you if you don't indicate what help you need. --

Re: [android-developers] Help me with adding overlays in google maps

2011-09-05 Thread TreKing
On Mon, Sep 5, 2011 at 6:24 AM, Logesh rajendren wrote: > *When i execute this application , i m getting the following error .* > > * > "application MapsOverlay(process.com.maps) has stopped unexpectedly. Please > try again " * > > > *can u please help me now .. ?* > Use LogCat and your debugger

Re: [android-developers] OutOfMemoryError

2011-09-05 Thread TreKing
On Mon, Sep 5, 2011 at 12:30 PM, NWD Sports wrote: > The AVD Manager correlates the amount of storage on the device to the > amount of RAM. It does? I see a section for SD Card size and a section for "Hardware", one of which is the device Ram size, and you set them both independently. I don't s

Re: [android-developers] Android 3.0 Intent.CALL

2011-09-05 Thread Mark Murphy
On Mon, Sep 5, 2011 at 11:03 AM, David Toledo wrote: > In Android 3.0 is possible using the Intent.ACTION_CALL, when execute this > sentence in the emulator Android 3.0 is for tablets, not phones. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://common

[android-developers] Android 3.0 Intent.CALL

2011-09-05 Thread David Toledo
Hi All In Android 3.0 is possible using the Intent.ACTION_CALL, when execute this sentence in the emulator only appears the dialog from Add Contact, or android 3.0 emulator is only for tablet without phone Thanks David -- You received this message because you are subscribed to the Google Groups

[android-developers] Re: Programming in Android

2011-09-05 Thread cellurl
http://www.udemy.com/write-and-publish-an-app-for-your-android-smartphone/ -- 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 t

Re: [android-developers] Animation not repeat

2011-09-05 Thread Appaholics
Would you mind posting more of your code? Thanks On Mon, Sep 5, 2011 at 8:15 PM, Hadas Mobile wrote: > Bc"d > Hi, > I write animation, but- even that I use with > AnimationDrawable.addFrame(mDrawable, 1000); > the animation not repeat. > What it can be??? > > Thanks > Hadas Mobile > > -- > You

[android-developers] Animation not repeat

2011-09-05 Thread Hadas Mobile
Bc"d Hi, I write animation, but- even that I use with AnimationDrawable.addFrame(mDrawable, 1000); the animation not repeat. What it can be??? Thanks Hadas Mobile -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send

[android-developers] pass date into .net webservice

2011-09-05 Thread sktniran
Hi friends, can anyone know how to pass the date from android application into .net webservice? i want to pass date from android into .net via webservice. this is my code... SimpleDateFormat dateFormater = new SimpleDateFormat("MM/dd/"); Date myDate = dateFormater.parse("12/03/201

[android-developers] Activity doesnot receive onDismiss event of Custom Dialog

2011-09-05 Thread Kapuddi Liu
hi, Below is the code scratch. After OK button is clicked, the dialog dismisses. But onClick function does not be called. Why? Thanks. ** HelloworldActivity.java public class HelloworldActivity extends Activity{ /** Called when the activity is first created. */ @Override publi

[android-developers] OpenGL Samsung Galaxy S2 S II Problem With Rotation

2011-09-05 Thread pad
Hi, I have a huge problem ONLY with SAMSUNG GALAXY S2 and i cannot figure out if the problem is my code or of this device!! ON ALL OTHER PHONES IT WORKS GREAT!! I'm Using ONLY OpenGL 1.0. The problem is that with the code below my game cannot draw the object that need rotation (the objects are n

Re: [android-developers] undefined reference to `android::Mutex::lock()'

2011-09-05 Thread Mark Murphy
Questions about the firmware belong on one of the Google Groups listed at http://source.android.com. On Mon, Sep 5, 2011 at 9:59 AM, B.Arunkumar wrote: > Hi, > >    We have compiled the Android Froyo source code and we would like > to access the MediaPlayer.java class which references native meth

[android-developers] undefined reference to `android::Mutex::lock()'

2011-09-05 Thread B.Arunkumar
Hi, We have compiled the Android Froyo source code and we would like to access the MediaPlayer.java class which references native methods in android_media__MediaPlayer.cpp. We are getting a compilation error in setMediaPlayer function in the line Mutex::Autolock l(sLock); that there is an unde

[android-developers] Pause MediaRecorder

2011-09-05 Thread Akhilesh Mani
Hi, Is there any way to pause MediaRecorder while recording. Or any alternate for doing that. Regards Mani. -- 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 unsubsc

Re: [android-developers] low memory issue

2011-09-05 Thread Duygu Kahraman
Hi Vani; You can delete some app in your phone. 2011/9/5 vani reddy > Hi friends , > I am getting the below in my logcat > INFO/ActivityManager(1724): Low Memory: No more background processes. > > -- > Regards, > Vani Reddy > > -- > You received this message because you are subscribed to the

[android-developers] Problem with dividers

2011-09-05 Thread Elison Lusvardi
Hi guys, how you're doing? I'm in trouble here. =[ In mine preferencesActivity, I've a listView who I set a image divider: http://schemas.android.com/apk/res/android"; android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical"> the a

Re: [android-developers] OutOfMemoryError

2011-09-05 Thread NWD Sports
The AVD Manager correlates the amount of storage on the device to the amount of RAM. From: TreKing Sent: Sunday, September 04, 2011 10:35 PM To: android-developers@googlegroups.com Subject: Re: [android-developers] OutOfMemoryError On Sun, Sep 4, 2011 at 9:18 PM, NWD Sports wrote: If I rea

Re: [android-developers] how to insert image background of button

2011-09-05 Thread Duygu Kahraman
What does it mean? Do you want to insert image to background and then insert button? 2011/9/5 Shital Suryawanshi > i am not able to insert image background of button.i already done > img.apk file. > > -- > You received this message because you are subscribed to the Google > Groups "Android Devel

Re: [android-developers] Re: My First Android Geolocation Application

2011-09-05 Thread Robin Talwar
Thanks leela i just added u on skype On Mon, Sep 5, 2011 at 4:34 PM, Lela Mose wrote: > Hi Abhishek! > > First of all congratulations with launching the app! I will check it out > right away. Secondly I am fishing here for new application developers to > interview them for my PhD dissertatio

[android-developers] my first android application

2011-09-05 Thread Shital Suryawanshi
Hey guys I have launched my first android application. it is based on Link to the application :- http://hotfile.com/dl/128908403/ecedb06/calandroid_shital_suryawanshi.rar.html Regards suryawanshi shital R -- You received this message because you are subscribed to the Google Groups "Android Dev

[android-developers] how to insert image background of button

2011-09-05 Thread Shital Suryawanshi
i already done img.apk file -- 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.c

[android-developers] Re: My First Android Geolocation Application

2011-09-05 Thread Lela Mose
Hi Abhishek! First of all congratulations with launching the app! I will check it out right away. Secondly I am fishing here for new application developers to interview them for my PhD dissertation. Its an informal talk (for about 20 minutes) through Skype of Google talk where I will pose ques

[android-developers] Ask about FLAG_ACTIVITY_REORDER_TO_FRONT

2011-09-05 Thread teddy
Hi all, I have two task: bar:B,Y foo: A,X,C Now C call startActivity to call B with FLAG_ACTIVITY_REORDER_TO_FRONT. After this call these tasks are: Case I: foo: A,X,C bar:Y,B or: Case II: bar:Y foo: A,X,C,B According the document http://developer.android.com/reference/android/content/Intent.html#F

[android-developers] how to insert image background of button

2011-09-05 Thread Shital Suryawanshi
i am not able to insert image background of button.i already done img.apk file. -- 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 em

[android-developers] Recursive entry to executePendingTransactions

2011-09-05 Thread Saul Diaz
Good morning: I am developing a Honeycomb 3.0 application and I am using Android Compatibility Library in order to get available the ViewPager component. I am suffering a "Recursive entry to executePendingTransactions" exception while trying to replace another Fragment with one composed only wi

Re: [android-developers] issue after Upgrading OS in Milestone to 2.3.5

2011-09-05 Thread Mark Murphy
This has nothing to do with this list. Please contact whoever you purchased the phone from for technical support with the phone. On Mon, Sep 5, 2011 at 8:40 AM, vani reddy wrote: > Hi , >  How do i know which OS version is supported in Motorola Milestone, i have > upgraded the phone to 2.3.5 but

Re: [android-developers] Change UI Layout for different devices

2011-09-05 Thread Mark Murphy
On Mon, Sep 5, 2011 at 8:37 AM, deepak wrote: > How can i change the layout of my application to suit all the > different screen sizes? My application looks good in Samsung Galaxy S > but when i see it on Sony Ericsson Xperia mini many of the texts and > buttons are missing. Any help on how to mak

[android-developers] issue after Upgrading OS in Milestone to 2.3.5

2011-09-05 Thread vani reddy
Hi , How do i know which OS version is supported in Motorola Milestone, i have upgraded the phone to 2.3.5 but it has become too slow..How to overcome this problem?? -- Regards, Vani Reddy -- You received this message because you are subscribed to the Google Groups "Android Developers" group.

[android-developers] Change UI Layout for different devices

2011-09-05 Thread deepak
How can i change the layout of my application to suit all the different screen sizes? My application looks good in Samsung Galaxy S but when i see it on Sony Ericsson Xperia mini many of the texts and buttons are missing. Any help on how to make it consistent over all the devices? -- You received

[android-developers] low memory issue

2011-09-05 Thread vani reddy
Hi friends , I am getting the below in my logcat INFO/ActivityManager(1724): Low Memory: No more background processes. -- Regards, Vani Reddy -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-de

Re: [android-developers] Automatic device resident apps running in bkgrd

2011-09-05 Thread Appaholics
You will need to register a service for the background listening and may or may not need to launch an activity, depending on wether you need a ui for the SMS. See http://developer.android.com/ for details on the aforementioned. On Mon, Sep 5, 2011 at 5:21 PM, Ben Chen wrote: > I'm new to Android

[android-developers] Automatic device resident apps running in bkgrd

2011-09-05 Thread Ben Chen
I'm new to Android development, so please pardon if this question seems too fundmental. I was wondering if it was possible to create an application that once launched is always "ON" even when the phone is not being used (unless of course the user manually terminates it or the battery runs out) and

Re: [android-developers] getLocalActivityManager().getActivity(tabTag) return NULL

2011-09-05 Thread Logesh rajendren
can u tell me how to trace using logcat ? i m new to it . On Fri, Sep 2, 2011 at 4:25 AM, paddy wrote: > I have 2 tabs with tagID "tag01" and "tag02". I have explicitly set > the focus to first tab by calling tabHost.setCurrentTab(0) > > When i call getLocalActivityManager().getActivity("tag01")

[android-developers] Re: How is RockPlayer doing hardware decoding?

2011-09-05 Thread B.Arunkumar
Hi, Thank you for your reply. Would you know if it is possible to use the inbuilt MediaPlayer with a self developed RTSP Stack and do the hardware decoding as it is? Thank you, B.Arunkumar On Sep 4, 6:42 am, Felix long wrote: > Yes, You're right. The hardware decoding mode only means using

Re: [android-developers] Unable to launch Emulator

2011-09-05 Thread Logesh rajendren
This problem arises after updating your android . here is the way to start your emulator . please follow these . 1) open command prompt in windows 2) go to android_sdk folder where u have installed it Eg: C:\android-sdk 3) go to the folder tools inside that where emulator.exe will be there 4) the

  1   2   >