[android-developers] Problema con la conservación de registros en RecyclerView al rotar la pantalla.

2023-05-08 Thread Alejandro Martinez
Saludos a todos, Estoy desarrollando una aplicación en Android por mi cuenta, aplicando los conocimientos aprendidos en los cursos "Android Basics in Kotlin", "Modern Android app architecture", "Advanced Android in Kotlin" y "Accessibility". La aplicación carga datos de productos y categorías

[android-developers] Network libraries research

2021-07-20 Thread Alejandro Mazuera
Greetings, I am Alejandro, Ph.D. student in Informatics. Currently I am conducting a study in order to identify Android developers' preferred Network libraries, what follows in a request for help needing your input through a brief survey. This is a purely academic research project

[android-developers] what network libraries do developers usually use in order to set up network requests?

2021-05-28 Thread Alejandro Mazuera
Greetings, dear community of Android developers, could you please spare a few minutes to fill out a survey for academic purpose only? https://forms.gle/jmZwUs1WQWVQFmJY9 The purpose of this survey is to identify developers' preferred Network libraries allowing Android apps to set up network

[android-developers] From an Activity, how to load the text / code from a web, parse as string and show to the user via msg toast

2017-02-12 Thread Alejandro B. Martin
Hello, From an Activity, How can I retrieve code or text from a website and display to the user ? I'm having difficulties programming back to Android, now developing as for Android 6.0 and newer. Getting deprecated about http client etc.. so I need a little of help. Can you paste me some code

Re: [android-developers] Re: Error 403 al entrar en https://play.google.com/apps/publish/

2016-11-09 Thread Alejandro Escobedo
/answer/139626?hl=en# ) para que transfirieran las apps a otra cuenta nueva. On Tuesday, November 8, 2016 at 2:53:33 PM UTC-6, oscar morcillo cuajares wrote: > > Si encuentro alguna respuesta o lo consigo te lo haré saber... > > Un saludo > > El 8/11/2016 20:32, "Al

Re: [android-developers] Re: Error 403 al entrar en https://play.google.com/apps/publish/

2016-11-08 Thread Alejandro Escobedo
uentro alguna respuesta o lo consigo te lo haré saber... > > Un saludo > > El 8/11/2016 20:32, "Alejandro Escobedo" <aesc...@arete.ws > > escribió: > >> Tengo exactamente este mismo problema, si alguien sabe la solución lo >> agradecería mucho. >>

[android-developers] Re: Error 403 al entrar en https://play.google.com/apps/publish/

2016-11-08 Thread Alejandro Escobedo
Tengo exactamente este mismo problema, si alguien sabe la solución lo agradecería mucho. Encontré 2 preguntas iguales, y *no encuentro respuesta*:

[android-developers] Chat Application

2012-04-18 Thread Alejandro Alves
Hello, I am doing an application that will allow users have one to one chats. I am wondering if there is an application that I could use for this. Regards -- 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] RelativeLayout inside a TableLayout

2012-03-09 Thread Alejandro Alves
Hello, I want to display a relativelayout inside a tablelayout programatically but the relativelayout does not display. This is my code: TableLayout table = new TableLayout(this); android.widget.TableLayout.LayoutParams tParams =new

[android-developers] SharedPreferences

2012-03-08 Thread Alejandro Alves
Hello, I want to have some preferences stored forever by my application, for example username, remember me, etc...and other preferences to be stored only until the application is closed, or the user logs out. So basically my question is how do I delcare which preferences must be stored for ever,

[android-developers] How to check if email was send

2011-08-24 Thread Alejandro Carlstein Ramos Mejia
I understand the concern for not allowing an application to submit directly an email. I found code that explain how to send an email (really is how to call the email application in the android). However, I cannot find how to VERIFY if the email was sent or not successfully. Ideas? -- You

[android-developers] Re: google voice native phone dialer control

2010-10-07 Thread Alejandro D. Garin
voice does with the native dialer? Thanks!! On Mon, Oct 4, 2010 at 8:55 AM, Alejandro D. Garin aga...@gmail.com wrote: Hi All, Does anyone know how google voice application is taking control of the default phone native dialer? Is it using the public android API? I saw how google voice

[android-developers] google voice native phone dialer control

2010-10-04 Thread Alejandro D. Garin
but I can't find nothing about how to do it. Please google guys give me a tip about if it's native code or public api. Thanks. Alejandro. -- 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

[android-developers] Re: Problems With webview and UTF-8

2010-03-23 Thread alejandro
='http://www.december.com/html/ images/icon.gif' alt='logo'); Perhaps you got this from some site which did this trying to get it to display correctly, but it wasn't needed...? On Mar 21, 11:28 am, alejandro alejandr...@gmail.com wrote: Hi! I want to render one UTF-8 encoded string what

[android-developers] Problems With webview and UTF-8

2010-03-22 Thread alejandro
Hi! I want to render one UTF-8 encoded string what is provided by a rss feed like that: WebView webview = new WebView(this); setContentView(webview); String s = new String(lt;IMG Src='http://www.december.com/ html/images/icon.gif' alt='logo'gt;); webview.loadData(s,

Re: [android-developers] Re: abort outgoing call

2010-01-08 Thread Alejandro D. Garin
Hi, What do you mean with not reinitiating the call ? On Fri, Jan 8, 2010 at 4:07 AM, Gulfam gulfa...@gmail.com wrote: Hi , I was aborting BroadCastReceiver using abortBroadcast(); method. Its working fine with 1.0 to 1.6 but on 2.0 or + its not working. I have checked the documentation

Re: [android-developers] Re: abort outgoing call

2010-01-08 Thread Alejandro D. Garin
, Gulfam gulfa...@gmail.com wrote: Hi Alejandro D. Garin, Reintiating call means when i setResultData(null); and after this i want to call at new number as Intent DialIntent = new Intent (Intent.ACTION_CALL,Uri.parse(3224005421));/**local number DialIntent.setFlags

Re: [android-developers] Re: abort outgoing call

2010-01-08 Thread Alejandro D. Garin
I wrote the Uri parse different: Intent callIntent = new Intent(Intent.ACTION_CALL, Uri.parse(tel: + NUMBER)); NUMBER is a constant with the new number to dial. On Fri, Jan 8, 2010 at 3:43 PM, Alejandro D. Garin aga...@gmail.com wrote: Hi Gulfam, I'm doing exactly

[android-developers] abort outgoing call

2010-01-07 Thread Alejandro D. Garin
is that I didn't found a way to actually abort the current call, or maybe replace the number dialed by the user. Please any hint on how to do that? Thanks! Alejandro. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send

[android-developers] Re: abort outgoing call

2010-01-07 Thread Alejandro D. Garin
just found the answer: use setResultData(null) on the BroadcastReceiver Thanks On Thu, Jan 7, 2010 at 4:13 PM, Alejandro D. Garin aga...@gmail.com wrote: Hi, Suppose I want to replace a short number dialed by the user (i.e. 1234) by a full mapped real number (4081234). So I should

[android-developers] Re: HTC Magic, is PhoneNumberUtils.PAUSE different?

2009-06-25 Thread Alejandro
of the standard SDK, otherwise, developing for the Android platform will become harder. Alejandro On Apr 26, 9:57 pm, Dianne Hackborn hack...@android.com wrote: At this point there is no HTC Magic.  I would assume that these people are using one of the leaked builds of 1.5, which is from some random pre

[android-developers] HTC Magic, is PhoneNumberUtils.PAUSE different?

2009-04-26 Thread Alejandro
currently have the means to test this. Does anyone know if the PhoneNumberUtils.PAUSE member in the HTC magic build reflects this change? Have any other functions in PhoneNumberUtils changed in order to support this? Thank you, Alejandro --~--~-~--~~~---~--~~ You

[android-developers] API for validating app purchases

2009-02-23 Thread Alejandro
. It should be up to the developer to decide how often to check, what to do if the query to the Market fails due to connection issues, etc. It could be part of the current PackageManager. Example: boolean hasUserPurchasedPackage(String PackageName); Regards, Alejandro