Re: [android-developers] StackOverflow Exception while using TabActivity

2012-09-26 Thread Marina Cuello
Just a guess, but if you don't think Romain's advice is on spot... could it be that you have a parent adjusting its size to wrap a child which is adjusting to match its parent? I think somebody posted something similar and that was the cause. Marina On Sep 26, 2012 3:50 AM, "Rajan" wrote: > Hel

Re: [android-developers] AsyncTask issues...

2012-09-26 Thread Marina Cuello
The key on AsyncTask is that it is "async"hronic. You "launch it" and the lines of code after that can't be sure it ended. That's what onPostExecute is for. Google around to see how to send your result back to your main thread. There are several tutorials about it. Marina On Sep 26, 2012 3:51 AM,

Re: [android-developers] Re: On screen orientation changes activity restarted.

2012-09-26 Thread Marina Cuello
If your target is 13 or higher you need to add screenSize too. You didn't even needed Google on this one. It's on the docs. http://developer.android.com/guide/topics/manifest/activity-element.html#config Marina On Sep 26, 2012 3:52 AM, "Joseph Visuvasam" wrote: > Hi I am also have the same prob

Re: [android-developers] Android resource qualifier

2012-09-28 Thread Marina Cuello
Your first two devices have a low density, lower than 160dpi, so they measure on dp is smaller than what you expect. Check http://developer.android.com/guide/practices/screens_support.html to get the theory behind it. Marina On Sep 28, 2012 7:37 AM, "vinay kumar" wrote: > Hi, > > I am unable to

Re: [android-developers] Android resource qualifier

2012-09-28 Thread Marina Cuello
I'm sorry. I wrote lower when I was thinking higher, LOL. The dpi values for ldpi, mdpi and so on are only standard ones, and most devices have different values. Try getting the xDpi and yDpi from a DisplayMetrics. I have an Xperia Neo V and the width was around 250dp. Marina On Sep 28, 2012 8:51

Re: [android-developers] Android app google maps showing grey tiles and not map!

2012-10-15 Thread Marina Cuello
If you're using the emulator you must remember to choose a "Google APIs" as a target for your AVD. Marina On Fri, Oct 12, 2012 at 8:11 PM, aek wrote: > > > Hi there, > > I wrote this snippet of program to illustrate google map example, the pb > that happens is tha the google map shows up but

Re: [android-developers] [HELP] AVD does not show control keys (home button, keyboard, back)

2012-10-16 Thread Marina Cuello
I know this is a little old, but the "no keys" look is how an AVD looks if you choose a resolution other than the standard ones, because there is no pre-made skin for them. You can still use your keyboard to access functionality. Check the documentation for a list of the shortcuts. Marina On Oct 1

Re: [android-developers] Android Jelly Bean Container

2012-10-26 Thread Marina Cuello
Cute and yummy. I can't get not even white label jelly beans anywhere here in Argentina anymore, but a Googler brought one odd those droids to an event and I was able to taste a couple :-) Sorry for the off-topic! Marina On Oct 22, 2012 6:27 AM, "Christos Amarandos" < develo...@cheekytigerapps.com

Re: [android-developers] How to avoid resource overriding in Android ?

2012-11-07 Thread Marina Cuello
You could include just 1px x 1px resources with the correct names on the library. Marina El 07/11/2012 09:20, "Makrand" escribió: > I am working on Android Project, to avoid duplication of files I am using > library project, but I have observed that "library project" is following > overriding co

Re: [android-developers] Tegra

2012-11-13 Thread Marina Cuello
If you just need the info, you could install this app: https://play.google.com/store/apps/details?id=com.realtechvr.glview&hl=en Marina >> On 13 November 2012 11:17, bob wrote: >>> >>> How can you tell easily if an Android device is a Tegra 2 or Tegra 3? >>> >>> -- >>> You received this message

Re: [android-developers] count down UI control

2012-11-13 Thread Marina Cuello
Search for "Android wheel picker library", there are a couple of them freely available. Marina El 12/11/2012 09:20, "and_dev" escribió: > hi > > I am looking for a custom component which will behave like a wheel. > actually I have to show the some number, which will start with zero and > goes up

Re: [android-developers] Is it possible to (easily) get the contents of a custom xml file in /res/values?

2012-11-14 Thread Marina Cuello
You could create a xml file on /res/values and access easily using String aString = getResources().getString(R.string.one_string); Marina On Tue, Nov 13, 2012 at 11:14 AM, Edmundo Carmona wrote: > Hi! > > Say, I want to move some of the strings in strings.xml to a separate xml > file. Say it's

Re: [android-developers] Re: Most Efficient Way to Insert 5000+ Contacts

2012-11-15 Thread Marina Cuello
I'm guessing it's an app devoted to people who works on Public Relations for artists or big companies. Marina On Thu, Nov 15, 2012 at 12:25 PM, bob wrote: > How would a normal user have 5000+ contacts? > > > I have maybe 50 at the most. > > > > On Tuesday, November 13, 2012 6:34:25 PM UTC-6, pre

Re: [android-developers] Re: In search of Nexus 10 ADB drivers

2012-11-23 Thread Marina Cuello
It happened a lot to me when I worked testing with different devices. Usually the safest option was "charge only". Marina On Nov 23, 2012 2:47 p.m., "Romain Guy" wrote: > MTP should work. All my devices are set to MTP and work just fine with adb. > > > On Fri, Nov 23, 2012 at 8:46 AM, b0b wrote

Re: [android-developers] I am trying to set the Image for an ImageView any help would be great

2012-11-28 Thread Marina Cuello
That's not the link to the image, but to the image info. The link to the high res image is http://upload.wikimedia.org/wikipedia/commons/0/09/Polar_Bear_-_Alaska.jpg You could have found it as I did... just following your own link. Marina On Mon, Nov 26, 2012 at 10:45 PM, Gabriel Higareda wrote:

Re: [android-developers] Re: minimum hardware requirements to develop on

2012-12-03 Thread Marina Cuello
Long press on any layout on the folder where you want the new one. One of the options you'll get is New file... Or just copy and paste another one. Marina On Dec 3, 2012 5:07 p.m., "Mário César Mancinelli de Araújo" < mandaproma...@gmail.com> wrote: > > About AIDE... I'm in travel, just with my ta

Re: [android-developers] Can't install my apps from Play Store (Error Code: -505)??

2016-04-13 Thread Marina Cuello
Just a wild guess... Starting from Lollipop you get the multiple user accounts. If you have several users on the device (including Guest user) and run an app from Android Studio, it installs on every user's "sandbox". But... if you delete the app by hand on with some user, it STILL exists on the ot

Re: [android-developers] size of google play gallery

2016-04-22 Thread Marina Cuello
The info is in in the same screen on the Console where you upload the images: JPEG or 24-bit PNG (no alpha). Min length for any side: 320px. Max length for any side: 3840px. At least *2 screenshots are required* overall. *Max 8 screenshots per type*. Drag to reorder or to move between types. Ma

Re: [android-developers] Looking for .Net Lead

2016-05-11 Thread Marina Cuello
These messages are ruining this list. It was a bit slow, but all these "hot list" and completely unrelated head hunts are killing it. Marina On Wed, May 11, 2016 at 11:19 AM, sarita D wrote: > Hello, > > Hope you are doing great. Please find the below Job Description and > forward profiles to r

Re: [android-developers] i cant run my app

2016-05-11 Thread Marina Cuello
You're stating your project's Min Sdk is Android 23 N preview, but your devices are Marshmallow or use even older APIs. Read the docs: http://developer.android.com/intl/es/tools/publishing/versioning.html#minsdkversion Marina On Wed, May 11, 2016 at 5:43 AM, Victor Mtowa wrote: > hello I seem t

Re: [android-developers] How to force an update of an App

2016-06-22 Thread Marina Cuello
Tell them to mark your app as auto-update and then never add a new permission on your manifest. https://support.google.com/googleplay/answer/113412?hl=en Marina On Wed, Jun 22, 2016 at 9:47 AM, wrote: > Hi Dev team, > > We have a Mobile Capture app published in Play Store. Our challenge is to >

Re: [android-developers] google play services lib

2016-08-29 Thread Marina Cuello
Here is the documentation: https://developers.google.com/android/guides/setup Marina On Sat, Aug 27, 2016 at 4:39 AM, 欧阳俊 wrote: > Why do I use the manage to download the latest SDK, Google play there is > no Google services play services libs project, then I won't be able to > access Google's

Re: [android-developers] bitmap from view flipper

2014-10-02 Thread Marina Cuello
Hi! I'm not sure if this is what you're looking for, but check this method: http://developer.android.com/reference/android/view/View.html#getDrawingCache() Marina On Wed, Oct 1, 2014 at 4:09 PM, sweety fx wrote: > I need to get the bit map from the View flipper., when I flip I need to > get the

Re: [android-developers] Re: My android studio suddenly has changed the editor font to enormous.

2014-10-20 Thread Marina Cuello
Hi! On your Android Studio or File menu (I have a Mac here, not Linux, not sure how or where is it). Preferences or Settings (sometimes they change name too, not sure if this is the case) Find "Appearence" under IDE Settings Mark "Override default fonts by (not recommended)" Choose whatever you w

Re: [android-developers] INSTALL_FAILED_DUPLICATE_PERMISSION

2015-02-19 Thread Marina Cuello
Hi! I'm not sure how to help, because've only met this problem when there are several users set on a device. If I install my app directly from Eclipse with my debug certificates, then uninstall the app and try to install a production copy, made with the release certificate, I've got the same error

Re: [android-developers] Android studio "inished with non-zero exit value 3" error

2015-05-13 Thread Marina Cuello
Just in case anyone else encounters this kind of error: usually the actual error is somewhere "upstream" the "Gradle Console" log messages. Scroll up and you might find the answer or at least the root of your generic error. As the task is "dexDebug", in this case I think it could be a repeated /

Re: [android-developers] Alguien sabe porque me sale este error? Error:Execution failed for task ':app:dexDebug'. > com.android.ide.common.process.ProcessException: org.gradle.process.internal.ExecExc

2015-08-03 Thread Marina Cuello
Por lo general, la causa real del error aparece más arriba en los logs / Usually, the real cause of the error can be found in earlier lines of the logs. Marina PS: Es mucho mejor cortar y pegar que hacer capturas de pantalla. Es una costumbre moderna que no entiendo :P / I find it's better to c

Re: [android-developers] font size normalization

2015-08-10 Thread Marina Cuello
You could use this tool to help on calculations: http://angrytools.com/android/pixelcalc/ Marina On Fri, Aug 7, 2015 at 12:11 PM, Justin Anderson wrote: > AFAIK there is no direct matching like that. They are two different > operating systems and render text differently. > > That being said, I

Re: [android-developers] Can't build project for AndroidStudio

2016-01-25 Thread Marina Cuello
Try checking with the guys at https://groups.google.com/group/android-ndk. Marina On Mon, Jan 25, 2016 at 10:30 AM, wrote: > I tried to build app in Cocos 2d-x on Ubuntu, using latest Android > Studio/SDK. > > BUILD FAILED > /home/user/android-sdk/tools/ant/build.xml:597: The following error >

Re: [android-developers] Bing translator api issue

2016-01-25 Thread Marina Cuello
I don't really get what you want to do. I'm guessing you want to use only one strings.xml and translate "on-the-fly" all the texts for this and the rest of your activities? The best way would be to just translate the strings to another strings.xml and use the values/your-language bucket to store it

Re: [android-developers] Multi screen form fill up

2016-01-25 Thread Marina Cuello
You could check how Roman Nurik made it in this library: https://github.com/romannurik/Android-WizardPager Marina On Sun, Jan 24, 2016 at 8:55 AM, Vivekanand P V wrote: > Dear All, > > I have a domain class with 20 properties which I want the user to fill. > > I like to show one or two propert

Re: [android-developers] Android Studio Android App

2016-01-27 Thread Marina Cuello
I used AIDE with the premiun key frequently a few years ago, and only check it from time to time currently. It's pretty nice, but it's better if you have a big screen, and a Bluetooth keyboard or use it on a nice emulator as Genymotion. It's great to show off with clients if you're freelance or ar

<    1   2