[android-developers] Re: Send SMS every x minutes

2012-11-29 Thread Brian Hoffmann
You are calling Thread.sleep() in the onClickHandler of your send button. Besides that, you're also trying to do all the repeated message sending in that handler. This is most likely to fail because this way you are blocking the UI thread. You shouldn't do any long running actions in the main

[android-developers] Re: Write to another application's internal memory

2012-11-29 Thread Carl
You could try using android:process with the same process name on the manifest declaration of the activities in each app between which you wish communication to occur. Note that they will also probably have to share a single heap, which may create problems, depending upon how much memory is

[android-developers] Re: textview and autolink=web question

2012-11-29 Thread Mike Adams
Any thoughts on this? I don't care if you answer my question. I'm curious about why leaving the app forces a refresh that the links show but in run time if they dont leave the app and multi task, they just dont show. On Sun, Nov 25, 2012 at 10:03 PM, Mike Adams adams...@gmail.com wrote: I am

[android-developers] Re: Write to another application's internal memory

2012-11-29 Thread skink
Carl wrote: You could try using android:process with the same process name on the manifest declaration of the activities in each app between which you wish communication to occur. Note that they will also probably have to share a single heap, which may create problems, depending upon how

[android-developers] App Engine Connected Android Project

2012-11-29 Thread Nsubuga
Hi buddies. I installed the latest Google plugin for Eclipse(Juno) last night. However, when I try to create an App Engine Connected Android Project I get the following error: Plug-in com.google.gdt.eclipse.mobile.android was unable to load class

[android-developers] hi..

2012-11-29 Thread Ibrahim Sada
Below is the brief explanation of wat we are trying to acheive. 1. There are mainly 2 parts involved in this project. Android UI and SQLite DB. 2. As per the design, the SQLite DBs entires will be used to populate the Android UI. 3. The SQLite DB will be updated regularly as and when there is a

[android-developers] Intel x86 image for 4.1.2

2012-11-29 Thread Simon Giddings
I have installed the intel x86 image for 4.1.2 (API 16) via the SDK Manager. Now, when I go into the AVD Manager and select a target of Android 4.1.2 - API Level 16, it still automatically selects the ARM CPU/ABI and disables the dropdown list. How do I get it to recognise that the x86 system

YNT: Re: [android-developers] Re: android e book

2012-11-29 Thread gunduz.salih
I decide to use jsoup and record data to sql lite ataşe Samsung Mobile tarafından gönderildiKristopher Micinski krismicin...@gmail.com yazdı:So use any HTML parser to read it, rather than an XML or JSON parser. kris On Mon, Nov 26, 2012 at 6:40 PM, Salih Gündüz gunduz.sa...@gmail.com wrote:

[android-developers] Re: Error: SPAN_EXCLUSIVE_EXCLUSIVE spans cannot have a zero length - very annoing

2012-11-29 Thread Evan Ruff
I am getting these issues as well. Did you ever find the solution to the problem? Thanks, E On Tuesday, October 30, 2012 5:24:07 AM UTC-4, Giuseppe wrote: Starting SDK 4.1.1 I have continuously the error: E/SpannableStringBuilder(1068): SPAN_EXCLUSIVE_EXCLUSIVE spans cannot have a zero

[android-developers] Camera parameters - Scene modes

2012-11-29 Thread Jim Graham
I recently got a new Android phone, with an 8 MP camera. It has a scene mode that I'm not familiar with, and is not listed in the Camera.Parameters page: asd. If/when I ever finish my camera app (when my tablet died, so did my only useful test platform...the new phone has enabled me to get back

[android-developers] Re: Top Developer?

2012-11-29 Thread Josh
I just recently received a Top Developer badge (November, 2012). I wanted to post my numbers for those who are curious. I'm a part-time, doing-this-for-fun developer, and I'm the founder and only employee of Joko Interactive. You can check out my apps here:

[android-developers] Re: FM radio Android Application Developement

2012-11-29 Thread bob
I was looking at the compatibility, and it only works with a few of my devices. So, it may require something special. I don't know what that special something is though.

[android-developers] Re: Camera parameters - Scene modes

2012-11-29 Thread bob
Maybe it stands for Auto-Sense Darkness? On Thursday, November 29, 2012 8:52:48 AM UTC-6, Spooky wrote: I recently got a new Android phone, with an 8 MP camera. It has a scene mode that I'm not familiar with, and is not listed in the Camera.Parameters page: asd. If/when I ever finish

Re: [android-developers] Google Docs Writer for Tablets

2012-11-29 Thread TreKing
This group is for developing apps with the Android SDK. If you have a feature request for a particular app, you have to contact that app's developer(s). I have no idea how you go about doing that for a Google app, but it's not going to be acknowledged on this forum. I would start with the Google

[android-developers] Force Screen Orientation Landscape crashes when in Portrait

2012-11-29 Thread Rob Thompson
setRequestedOrientation( ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE ); int orientation = getResources().getConfiguration().orientation; orientation should equal ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE, but it does not. It equals ActivityInfo.SCREEN_ORIENTATION_PORTRAIT. Any

Re: [android-developers] Re: Camera parameters - Scene modes

2012-11-29 Thread Jim Graham
On Thu, Nov 29, 2012 at 08:01:56AM -0800, bob wrote: Maybe it stands for Auto-Sense Darkness? I was wondering about that, myself, and tried it out. I didn't notice any change (and I'm in a room that isn't all that well lit, and was aiming the camera into an area that is even less well lit.

[android-developers] Re: Intel x86 image for 4.1.2

2012-11-29 Thread Simon Giddings
The only way I found to get this to work is to reboot the system. A bit extreme, but it works. On Thursday, 29 November 2012 11:24:53 UTC+1, Simon Giddings wrote: I have installed the intel x86 image for 4.1.2 (API 16) via the SDK Manager. Now, when I go into the AVD Manager and select a

[android-developers] Re: Google Docs Writer for Tablets

2012-11-29 Thread bob
What do you mean by GDocs? Are you referring to the app called GDocs by WILDART? If so, maybe get the paid version and maybe it will have what you want? On Saturday, November 24, 2012 8:05:30 AM UTC-6, Corbett Ball wrote: It would be great for Android Tablet users to write directly

[android-developers] Re: Top Developer?

2012-11-29 Thread John Coryat
Can you reply to comments now? (you do this in the developer console) -John Coryat -- 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

[android-developers] extend class and constructors

2012-11-29 Thread Simon Giddings
This may seem a bit basic, but I come from a C++ background and it is confusing me a little. When I extend a base class, do I need to create a constructor for each base class constructor ? What I mean is this. Given : public class base { protected int m_iValue; public base() {

Re: [android-developers] hi..

2012-11-29 Thread Jovish P
Also we would like to know, if we install the application which has SQLite DBs using the .apk file, where is the Database saved in an Android Device. the sqlite database will be stored in the application directory. the user can delete this if he goes to settings and clear data. then it will be a

Re: [android-developers] extend class and constructors

2012-11-29 Thread Παύλος-Πέτρος Τουρνάρης
No you don't need do. But if you want to call the base constructors you just call super with the appropriate parameters.Also you can create new constructors for your new class that extends the base one! For example! public class base { public base(){ int i = 0; } }

[android-developers] Re: extend class and constructors

2012-11-29 Thread Streets Of Boston
public class Derived extends base { public Derived() { super(); } public Derived(int iVal) { super(iVal); } } On Thursday, November 29, 2012 12:34:56 PM UTC-5, Simon Giddings wrote: This may seem a bit basic, but I come from a C++ background and it is

Re: [android-developers] hi friends

2012-11-29 Thread Jovish P
first image listview with custom adapter and custom layout for each row. based on the check u can strike of the text view text TextView tv=(TextView) v.findViewById(android.R.id.text1); tv.setPaintFlags(tv.getPaintFlags() | Paint.STRIKE_THRU_TEXT_FLAG); second image listview itself and on

Re: [android-developers] GCMBroadcast Receiver Enable/Disable

2012-11-29 Thread Παύλος-Πέτρος Τουρνάρης
/BUMP Anyone Please??? On Wed, Nov 28, 2012 at 7:53 PM, Paul-Peter Tournaris p.tourna...@gmail.com wrote: Hello guys. In my application i have a gcmbroadcast receiver registered, so that i can receive PushNotifications. It is the Basic GCMReceiver Class provided by Google and i have an

Re: [android-developers] Re: How do you show 'Are you sure you want to quit' dialog?

2012-11-29 Thread Kristopher Micinski
you could simply do it in onPause and take care of that anyway... but yes. kris On Thu, Nov 29, 2012 at 2:23 AM, Johan Appelgren johan.appelg...@gmail.comwrote: You'd probably want to persist data even if you have a confirmation dialog on back since the user might task switch or press home.

[android-developers] Error Fetching 4.2.1 Source Code

2012-11-29 Thread Dritan
Hello, I am trying to download the source for Android 4.2.1 using repo. I did a listing of all available branches: origin/android-4.1.1_r4 origin/android-4.1.1_r5 origin/android-4.1.1_r6 origin/android-4.1.1_r6.1 origin/android-4.1.2_r1 origin/android-4.2.1_r1

Re: [android-developers] Reading images/files from another apps resources

2012-11-29 Thread Jovish P
Check out this post * https://groups.google.com/forum/?fromgroups=#!topic/android-developers/S5nmfJvBCws * Jovish On Wed, Nov 28, 2012 at 2:48 PM, Russell Wheeler russellpeterwhee...@gmail.com wrote: I am writing an app that will want to read images and audio files from another 'data' app,

Re: [android-developers] Display contents of a database in a listview

2012-11-29 Thread Jovish P
Adapter that exposes data from a Cursorhttp://developer.android.com/reference/android/database/Cursor.htmlto a ListViewhttp://developer.android.com/reference/android/widget/ListView.htmlwidget. The Cursor must include a column named _id or this class will not work.

Re: [android-developers] read files (.doc .pdf .ppt)

2012-11-29 Thread Jovish P
wht do u mean by files in localhost ? if the files are under asstes folder of ur application and u want to open it from there . you can use AssetManagerhttp://developer.android.com/reference/android/content/res/AssetManager.html, through this class we can easily access any files lying inside

Re: [android-developers] Clearing Activity History

2012-11-29 Thread Jovish P
finish the splash screen activity using this.finish() and move to search item screen. so it will be not there in the activity stack history. don't kwn it helped u or not. regards jovi On Fri, Nov 23, 2012 at 8:59 AM, Wayne androidstara...@gmail.com wrote: I am having trouble clearing the

[android-developers] Re: Top Developer?

2012-11-29 Thread Piren
google now allows you to do that without being a top developer, you need to request it. On Thursday, November 29, 2012 11:59:14 AM UTC-5, John Coryat wrote: Can you reply to comments now? (you do this in the developer console) -John Coryat -- You received this message because you are

[android-developers] Re: Display contents of a database in a listview

2012-11-29 Thread lbendlin
Define contents of a database. You probably meant a table in a database. On Tuesday, November 27, 2012 12:02:16 PM UTC-5, Giannis Sarridis wrote: I would like to display the contents of a database in a listview...and I am new at this..so if there's anyone who could show me the way how to do

[android-developers] Re: Force Screen Orientation Landscape crashes when in Portrait

2012-11-29 Thread Piren
did you force a specific orientation in the manifest? On Thursday, November 29, 2012 11:28:04 AM UTC-5, Rob Thompson wrote: setRequestedOrientation( ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE ); int orientation = getResources().getConfiguration().orientation; orientation

Re: [android-developers] Re: How do you show 'Are you sure you want to quit' dialog?

2012-11-29 Thread lbendlin
Seconded. It's the only reason we have it in our app, so users cannot (falsely) accuse us of draining their battery. On Wednesday, November 28, 2012 1:09:48 PM UTC-5, Kristopher Micinski wrote: To add, the exit button also has the effect of turning off GPS updates, so exiting also has a

Re: [android-developers] how to get the location of an incoming call

2012-11-29 Thread Jovish P
did u got any solution for this ? regards, jovi On Fri, Nov 23, 2012 at 12:49 AM, babrit 0678...@gmail.com wrote: -- 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

[android-developers] Re: Adsense and WebView

2012-11-29 Thread alexandros mouzakidis
Adsense will stop for feed in 4 days so dont waste your time with this On Sunday, September 23, 2012 6:45:04 AM UTC+3, Ildar Nigmatzyanov wrote: Hello. Please, help me ) I try to create app. It is like RSS reader, but we use our own rss feeds. It works together with WebView. Also, we use

Re: [android-developers] Re: Top Developer?

2012-11-29 Thread Παύλος-Πέτρος Τουρνάρης
How do you request it ? On Thu, Nov 29, 2012 at 8:46 PM, Piren gpi...@gmail.com wrote: google now allows you to do that without being a top developer, you need to request it. On Thursday, November 29, 2012 11:59:14 AM UTC-5, John Coryat wrote: Can you reply to comments now? (you do this

[android-developers] how to play a video on an OpenGL texture

2012-11-29 Thread bob
Does anyone know how to play a video on an OpenGL texture? I tried something like this, but no dice: int[] textures = new int[1]; GLES20.glGenTextures(1, textures, 0); SurfaceTexture st = new SurfaceTexture(textures[0]); Statics.mp.setSurface(new Surface(st));

Re: [android-developers] extend class and constructors

2012-11-29 Thread Lew
Paul-Peter Tournaris wrote: No you don't need do. But if you want to call the base constructors you just call super with the appropriate parameters.Also you can create new constructors for your new class that extends the base one! For example! This is basic Java. Check out

Re: [android-developers] how to play a video on an OpenGL texture

2012-11-29 Thread Romain Guy
You must call updateTexImage() on SurfaceTexture when a new frame is available (use an OnFrameAvailableListener to be notified.) On Thu, Nov 29, 2012 at 11:39 AM, bob b...@coolfone.comze.com wrote: Does anyone know how to play a video on an OpenGL texture? I tried something like this, but no

Re: [android-developers] Error Fetching 4.2.1 Source Code

2012-11-29 Thread Joman Chu
origin is your local git repository's name for the AOSP remote repository. Try the repo init again, but this time using -b android-4.2.1_r1, without the origin/. Also, this question might be better directed at the android-platform list. On Thu, Nov 29, 2012 at 1:35 PM, Dritan

Re: [android-developers] google map problem

2012-11-29 Thread doğan
I don't think because I added the internet permission in the manifest.xml On Wednesday, November 28, 2012 5:41:09 PM UTC+2, bob wrote: Maybe you forgot INTERNET permission in the first project? On Wednesday, November 28, 2012 8:49:06 AM UTC-6, doğan wrote: I dont understand this

Re: [android-developers] how to play a video on an OpenGL texture

2012-11-29 Thread bob
I'm calling updateTexImage now, and I'm getting some weird error: E/libEGL ( 4995): validate_display:198 error 3008 (EGL_BAD_DISPLAY) E/SurfaceTexture( 4995): [unnamed-4995-0] error creating EGLImage: 0x3008 D/AndroidRuntime( 4995): Shutting down VM W/dalvikvm( 4995): threadid=1: thread exiting

Re: [android-developers] Re: Android Alarm Clock UI

2012-11-29 Thread Joman Chu
Try taking a look at the AOSP source code for packages/apps/DeskClock to see how it's implemented. On Thu, Nov 29, 2012 at 1:54 AM, Etienne lawloretie...@gmail.com wrote: Originally posted here :

[android-developers] Intent camera option with the gallery

2012-11-29 Thread Ricardo Cardoso
Hello, I wonder how can I call the Intent of the camera with the option flag gallery too? Same is the Instagram app ... hugs -- 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: Top Developer?

2012-11-29 Thread Piren
heh... actually i'm not sure... you can try the google play developers support email, or contact one of your local google advocates and see if they can be of help On Thursday, November 29, 2012 2:21:51 PM UTC-5, Paul-Peter Tournaris wrote: How do you request it ? On Thu, Nov 29, 2012 at

Re: [android-developers] how to get the location of an incoming call

2012-11-29 Thread Piren
http://code.google.com/p/libphonenumber/ On Thursday, November 29, 2012 2:05:28 PM UTC-5, Jovish P wrote: did u got any solution for this ? regards, jovi On Fri, Nov 23, 2012 at 12:49 AM, babrit 067...@gmail.com javascript:wrote: -- You received this message because you are

Re: [android-developers] Problems with facebook sdk for android

2012-11-29 Thread Francisco Marzoa
Same problem here. The only workaround I found was registering a credit card, so you are trusted that way without verifying your phone. Best regards, On Nov 28, 2012 10:08 AM, Elena Aa elenacon...@gmail.com wrote: When I try to registred as a Developer, I never recive the code to verify!

[android-developers] Re: Why would SIGSEGV crash occur in Galaxy S3 Android WebView?

2012-11-29 Thread Johnabre
Hmm…I've still got a long way to go in narrowing this down to a simple test case, but I've gotten reproduction of the above SIGSEGV down to 2 HTML pages loaded from a plain webview app. The webview simply starts up and loads the first page:

Re: [android-developers] Reduce Battery Usage via Airplane Mode

2012-11-29 Thread Robert Greenwalt
It an interesting idea. Note that toggling APM will consume more power than maintaining a connection for some period. If APM is on for long enough you can make this a positive change. If you have no coverage, it's definitely a positive change. Of course your texting, chatting, location

[android-developers] Re: hi friends

2012-11-29 Thread sree android
Thank you bro. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to android-developers+unsubscr...@googlegroups.com For more

[android-developers] smart tv app using android

2012-11-29 Thread Ananda Krishna
Hi, Can anyone tell how to develop a smart tv remote app using android i.e topics that we need to know and how to begin.. Any help in this regard is appriciated.. Regards, AnandaKrishna S -- You received this message because you are subscribed to the Google Groups Android Developers group. To

[android-developers] When can every developer reply to reviews?

2012-11-29 Thread Techni
I am getting some really STUPID comments and it's infuriating that I can do nothing about them -- 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

[android-developers] Re: smart tv app using android

2012-11-29 Thread Zsolt Vasvari
Do you have Google access in your country? On Friday, November 30, 2012 1:20:01 PM UTC+8, Ananda Krishna wrote: Hi, Can anyone tell how to develop a smart tv remote app using android i.e topics that we need to know and how to begin.. Any help in this regard is appriciated.. Regards,

[android-developers] Re: When can every developer reply to reviews?

2012-11-29 Thread Zsolt Vasvari
Dec 12, 6:00pm. On Friday, November 30, 2012 2:31:00 PM UTC+8, Techni wrote: I am getting some really STUPID comments and it's infuriating that I can do nothing about them -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this