Re: [android-developers] Re: java.lang.IllegalStateException: Fragment MyFragment is not currently in the FragmentManager

2012-08-16 Thread Marina Cuello
I had the same trouble and fixed it by a workaround: I check the fragments are loaded and only store those on the Bundle. From time to time it fires an Exception but it works anyway. @Override protected void onSaveInstanceState(Bundle instanceStateToSave) {

Re: [android-developers] java.lang.ClassNotFoundException: android.support.v4.os.ParcelableCompatCreatorHoneycombMR2 in test project

2012-08-27 Thread Marina Cuello
I had a similar trouble with that class when using Proguard to obfuscate. It seems to be a private class on the compatibility package --you can see it but it's being used. If you're using Proguard, you can check if adding this line to your config helps: -keep class android.support.v4. { *; }

Re: [android-developers] Writing to External SD

2012-08-28 Thread Marina Cuello
I didn't test it yet, but I'll need to add that option soon and I found this blog about it http://renzhi.ca/2012/02/03/how-to-list-all-sd-cards-on-android/ Marina On Tue, Aug 28, 2012 at 5:39 AM, Jason Sesso djse...@gmail.com wrote: Create a dialog. For them to choose and then save the

[android-developers] ICS: White screen while changing visibility on Webview

2012-08-28 Thread Marina Cuello
Hi to all! I have a little app with a layout that it's something like this: FrameLayout FrameLayout ImageView/ ProgressBar/ /FrameLayout LinearLayout WebView/ /LinearLayout /FrameLayout I initially set the ImageView (kind of a place-holder) and the ProgressBar

Re: [android-developers] Can i use google inside my app?

2012-08-29 Thread Marina Cuello
I guess you could use a Google Custom Search configured to search on the whole web in a local site that takes part of your app. I'm not a lawyer and I haven't read Custom Search TCs in a long while, but a few years ago it was allowed to do something like that for a desktop app. You could check if

Re: [android-developers] ICS: White screen while changing visibility on Webview

2012-08-29 Thread Marina Cuello
in the manifest fixed the issue for me. This appears to be fixed in the official 4.1.1 (Galaxy Nexus), where GPU accel can be kept on, and the white flash does not happen. -- K 2012/8/29 Marina Cuello marina.ear...@gmail.com Hi to all! I have a little app with a layout that it's something like

Re: [android-developers] ICS: White screen while changing visibility on Webview

2012-08-29 Thread Marina Cuello
was seeing the white flash affect views outside of the WebView's boundaries. This is a real issue when you have a fragment-based multi-panel UI, so I've decided to switch the whole thing off for platform versions prior to 4.1. -- K 2012/8/29 Marina Cuello marina.ear...@gmail.com Thanks a lot! Adding

Re: [android-developers] Re: Protocall erros

2012-09-20 Thread Marina Cuello
market:// URIs were the old Android Market links to apps, probably newer devices aren't redirecting them to Google Play anymore. You could change market:// with https://play.google.com/; and it should work. Marina On Sep 20, 2012 4:10 AM, Lew lewbl...@gmail.com wrote: KCRaju wrote: may i know

Re: [android-developers] Re: Protocall erros

2012-09-20 Thread Marina Cuello
a debug build to get the full stack instead of an obfuscated one. Marina On Sep 20, 2012 9:36 AM, Mark Murphy mmur...@commonsware.com wrote: On Thu, Sep 20, 2012 at 8:32 AM, Marina Cuello marina.ear...@gmail.com wrote: market:// URIs were the old Android Market links to apps, probably newer

Re: [android-developers] NFC

2012-09-20 Thread Marina Cuello
Perhaps an app for people with hearing disabilities that are in a place with no room for sign language? On Sep 20, 2012 1:15 PM, Justin Anderson magouyaw...@gmail.com wrote: What would be the use-case for something like that? Thanks, Justin Anderson MagouyaWare Developer

Re: [android-developers] Play youtube video on WebView

2012-09-20 Thread Marina Cuello
It could be you need to enable hardware acceleration on your WebView or perhaps set a custom WebChromeClient on your WebView to open it as fullscreen. It depends on your target platform and your needs. Search for Android WebView HTML5 video and you'll find some help. I'm still working on it.

Re: [android-developers] ASX Stream! urgent

2012-09-20 Thread Marina Cuello
If I recall correctly, ASX files are some kind of pointer to the actual stream (like an mp3 or pls one). Perhaps you could find some ideas by learning about those files? Marina On Sep 19, 2012 11:31 AM, Fermin Jimenez ferminjimene...@gmail.com wrote: Hello, I have to finish an app, the

Re: [android-developers] Re: Multitouch 90% working.

2012-09-25 Thread Marina Cuello
I can't actually run/debug your code because I'm on the bus and I don't want to generate a new project on AIDE, but the most usual suspect with multi-touch troubles is a confusion among pointer IDs and pointer indexes. Check this old post on Android devs blog to see if you're getting them right.

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

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

2012-09-26 Thread Marina Cuello
The key on AsyncTask is that it is asynchronic. 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 josep...@roamsoft.in wrote: Hi I am also

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 vk872...@gmail.com wrote: Hi, I

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 abdelkader.2004...@gmail.com wrote: Hi there, I wrote this snippet of program to illustrate google map example, the pb that happens is tha the

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

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

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 makrandm...@gmail.com 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

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.glviewhl=en Marina On 13 November 2012 11:17, bob b...@coolfone.comze.com wrote: How can you tell easily if an Android device is a Tegra 2 or Tegra 3? -- You received this

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 emirates.mobil...@gmail.com 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

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 resources 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 eantor...@gmail.com wrote: Hi! Say, I want to move some of the strings in strings.xml to a

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 b...@coolfone.comze.com wrote: How would a normal user have 5000+ contacts? I have maybe 50 at the most. On Tuesday, November 13, 2012

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 romain...@android.com 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

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

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 tablet

Re: [android-developers] How to call startactivityforresult from a non-activity class to get the resuts

2013-01-10 Thread Marina Cuello
Perhaps you could create an interface for your Activity-clients to implement. You then pass to your library class a reference to this (now a YourLibraryInterface). Marina On Jan 10, 2013 7:10 p.m., Kevin Duffey andjar...@gmail.com wrote: Couldn't someone using this library call it from within

[android-developers] RuntimeException: Canvas: trying to use a recycled bitmap

2013-03-18 Thread Marina Cuello
Hi! I'm having a weird problem with one of my apps. I'll try later to extract some code and make a sample project to share if it's useful but by now I'm just asking to see if anyone found this one or can give me a hint on how to tackle it. I have two activities. Activity A extends

Re: [android-developers] Re: RuntimeException: Canvas: trying to use a recycled bitmap

2013-03-19 Thread Marina Cuello
, March 18, 2013 12:50:37 PM UTC-5, Marina Cuello wrote: Hi! I'm having a weird problem with one of my apps. I'll try later to extract some code and make a sample project to share if it's useful but by now I'm just asking to see if anyone found this one or can give me a hint on how to tackle

Re: [android-developers] Re: RuntimeException: Canvas: trying to use a recycled bitmap

2013-03-19 Thread Marina Cuello
! Marina On Tue, Mar 19, 2013 at 1:48 PM, Marina Cuello marina.ear...@gmail.comwrote: I did. I changed some stuff to avoid out of memory errors --just for debug sake, can't be done in the working app-- and then commented the calls and the exception is thrown anyway. It seems like something

Re: [android-developers] Re: How to do the slicing effect as in fruit ninja when user touches the screen?

2013-05-07 Thread Marina Cuello
Cocos2d-x, basically the same but C++ instead of Objective C. But you'll need to use Android NDK besides SDK. Marina On Tue, May 7, 2013 at 2:52 AM, mait...@rossitek.com wrote: Hi, thanks for the reply. I have seen this library but still it is for iOS, I want to do it for Android. Any idea

Re: [android-developers] Issues Don't know whats that

2013-05-13 Thread Marina Cuello
You just activated some developer options. Go to settings, Developer options and disable Pointer location and Show touches. Marina On Mon, May 13, 2013 at 2:10 PM, news.anand11 news.anan...@gmail.com wrote: Hi , I am facing some issue in my phone, I think its because I am developing something

[android-developers] In-app when country not in list of Supported locations for merchants

2013-05-27 Thread Marina Cuello
Hi! My country Argentina was recently deleted from the list on Supported locations for merchants. I was developing a little game with an in-app billing system; some mini-games would come free and some would be optional, to be purchased. There is any way to make it work now that it is out of the

Re: [android-developers] Re: In ADT: Best Set of Emulator Devices to Cover Most Actuals?

2014-01-14 Thread Marina Cuello
You could also try Genymotion. You have several device images available. It doesn't come with Google Apps / Google Play Services included, but it is really easy to add Google stuff and even ARM simulation to them. Genymotion works better than the official emulator if your development computer is

Re: [android-developers] AppStore emulation tools?

2014-01-15 Thread Marina Cuello
If you are not satisfied by how adb install works, you could try installing by sending the apk by e-mail or downloading it into the device / emulator you are using to test and install it from there. It does ask for permissions and that kind of stuff. Marina On Sun, Jan 12, 2014 at 10:17 AM,

Re: [android-developers] Data getting null when the app in background

2014-01-15 Thread Marina Cuello
The quick solution is to check, on the onResume of your activity, if the data is null, and if it's null, restart everything. There are other, better ways, but that's the quickest one to code. If you want to find better options, Google about activity life cycle and specially recreation of

Re: [android-developers] Open URL in Fragment causes ActivityNotFoundException

2014-01-23 Thread Marina Cuello
Does it work if you add http://; to your URL? It sounds like your device/emulator has no application to handle the browsing (right word?) of that kind of data (an URI with no protocol declared). Marina On Thu, Jan 23, 2014 at 2:11 PM, Stanley Lei xiaofeng.lei...@gmail.comwrote: Hi all,

Re: [android-developers] Eclipse plugins for SQLite3 and project import

2014-01-28 Thread Marina Cuello
I tried your Eve plugin when and it works like a charm. I had a lot of libraries, some even using others, and it got them ok. If you can, add an option/function to add a res folder automatically if there is none. Some libraries have an empty one, and when you import projects you cloned from Git

Re: [android-developers] Windows Phone ContentPresenter equivalent on Android

2014-02-11 Thread Marina Cuello
I'm not sure how a ContentPresenter works, but you can create custom views on several ways. You could extend any ViewGroup / xxxLayout that suits you well, create an xml with a merge tag and so on. Just google a bit around. Marina On Mon, Feb 10, 2014 at 12:39 PM, Jia Li jarlym...@gmail.com

Re: [android-developers] Is it all devices larger side the landscape?

2014-03-31 Thread Marina Cuello
No, there are a few devices with a BlackBerry-like / QWERTY format that have 4:3 screens. Samsung Galaxy Y Pro is one I can recall. But they're exceptions, I believe. Marina On Mon, Mar 31, 2014 at 11:04 AM, lselwd webmas...@poliscarhire.com wrote: When using Eclipse tested app in Nexus7

Re: [android-developers] application downloaded to phone but wont open

2014-04-07 Thread Marina Cuello
Did you define a launcher activity on your AndroidManifest.xml? That could be a reason. Marina On Mon, Apr 7, 2014 at 6:45 PM, firebreather michaelirvingbr...@gmail.comwrote: I have a friend who downloaded a couple of my apps, but they wont open, even though their icons are on the phone. I

Re: [android-developers] Android how to draw a circle ring as shown in the image.

2014-04-14 Thread Marina Cuello
Sometimes, the problem when your first language is not English is that you don't know how to search on Google. What I mean is that you don't know the right words. When I can't find what I need, but I'm sure there must be something out there, I often use synonyms. In this case, you get what you

Re: [android-developers] Re: How to calculate a tablets resolution before purchasing the tablet

2014-04-15 Thread Marina Cuello
You can search for/make an app that detects the bucket and install it, if you have access to the device. A quick search gives me https://play.google.com/store/apps/details?id=com.pmc.android.checkscreensize, but there are plenty. Otherwise, as far as I can recall it depends on the manufacturer's

Re: [android-developers] ADT Update?

2014-04-29 Thread Marina Cuello
You need to go to Install new software... and choose the Android Developer Tools Update Site. Then select the tools you need to update and unmark the Contact all update sites... check. Then follow the update process and it will work. Marina On Mon, Apr 28, 2014 at 11:10 PM, 张张斌

Re: [android-developers] Android ADT problem on eclipse

2014-05-21 Thread Marina Cuello
On your Install new software screen, uncheck the Contact all update sites during install to find required software and try again. Marina On Wed, May 21, 2014 at 11:37 AM, dashman erjdri...@gmail.com wrote: I updated to ADT 22.6.3 and having problems. On Eclipse startup getting an error

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 fxswe...@gmail.com wrote: I need to get the bit map from the View flipper., when I flip I

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

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

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

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 magouyaw...@gmail.com wrote: AFAIK there is no direct matching like that. They are two different operating systems and render text differently.

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

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:

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

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

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

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

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.

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

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

Re: [android-developers] General Newbie Question on app development

2017-01-31 Thread Marina Cuello
If you're asking about how to simulate on your computer an Android device with your required sensors, you can check what sensors are available on this documentation page: https://developer.android.com/studio/run/emulator.html Marina On Tue, Jan 31, 2017 at 3:24 PM, wrote:

Re: [android-developers] Issue in GoogleApiClient implementation

2017-01-23 Thread Marina Cuello
I don't know this API, but I guess you just could use the easy route and put a boolean flag. Manage it on your onSaveInstanceState() and onRestoreInstanceState() to keep its state on orientation change. Marina On Sat, Jan 21, 2017 at 11:50 AM, Aman Pathak wrote: > Hi >

Re: [android-developers] Using Inputs

2017-01-23 Thread Marina Cuello
There are plenty of tutorials on the net. I don't usually go the "Let me Google that for you" route, but with this question I can't help it: http://bfy.tw/9dhF Marina On Sat, Jan 21, 2017 at 10:42 PM, Blueseer32 wrote: > Hello, does anyone know how to accept user input?

Re: [android-developers] Fragment with setRetainInstance(true) and destroying Activity when it stopped

2017-01-23 Thread Marina Cuello
I think this StackOverflow answer looks good for your question: http://stackoverflow.com/a/12641575/671431 Marina On Sun, Jan 22, 2017 at 4:22 PM, Maks Tuev wrote: > In Android documentation >

Re: [android-developers] Android Studio: Gradle sync failed. Help!

2017-01-23 Thread Marina Cuello
Did you try double clicking? I think that's the way with the Find action dialog. Marina On Sat, Jan 21, 2017 at 10:50 PM, Chris Fesko wrote: > Im having trouble getting Android Studio working, Im running a fresh > installtion and im getting this error. > > 8:30:21 PM Gradle

Re: [android-developers] App not show in "New and Updates" category

2017-01-20 Thread Marina Cuello
I believe it's a curated section, just like the other ones on the main screen. It's usually filled with big brands, awarded names and viral trends. So it's probably not an automatic list, and you'll not see yours there just because you uploaded. Marina On Fri, Jan 20, 2017 at 6:52 AM,

Re: [android-developers] Android Pay Problem

2017-01-20 Thread Marina Cuello
I don't know this service, but... Given the error in the screen, did you set up a card on the Android Pay app on the device in which you are testing? Marina On Fri, Jan 20, 2017 at 11:26 AM, wrote: > Hello, > > > I am trying integration of Android Pay, but

Re: [android-developers] Duration - No longer visible

2017-01-25 Thread Marina Cuello
As many things on Android, there is no exact timing. It depends on the load of the system, the processor(s) on the device, how big the next activity is (if the "stopping" one is being replaced with another), if there is some garbage collection going on, and so on... Marina On Wed, Jan 25,

Re: [android-developers] Emulator process killed while launching

2017-02-22 Thread Marina Cuello
Usually there is more info on the logs a bit upstream than the actual error. Do you get any extra info there? Marina On Wed, Feb 22, 2017 at 6:16 AM, pheromix wrote: > hi all, > > I am using Android Studio 2.2.3 > > I created a very simple project with the basic activity. > >

Re: [android-developers] Restaurant Application - "Print out - Need to display the latest ordered items not Previous"

2017-02-20 Thread Marina Cuello
You're not been clear on your issue, or you're just overthinking a really simple issue. You're obviously storing the order data somewhere... just add an extra "last print" field for the orders, and a timestamp on each items. When a print is needed, just filter out the items that are previous to

Re: [android-developers] getScan() problem

2017-02-22 Thread Marina Cuello
The answer to your questions will be "an empty list" too if you don't try to make them more clear. No idea what you're talking about :) https://www.biostars.org/p/75548/ Marina On Wed, Feb 22, 2017 at 2:53 PM, Siddharth Shankar Swain < h2015...@pilani.bits-pilani.ac.in> wrote: > getScan()

Re: [android-developers] Need my published app source link.

2017-02-24 Thread Marina Cuello
I don't think I understand your question. Could you clarify? Marina On Fri, Feb 24, 2017 at 7:53 AM, vishal kansagra < kansagravishal...@gmail.com> wrote: > Hello Team, > > I have deployed one application namely wibrate on google play store. > It is based on chat and free wifi service

Re: [android-developers] Saving data in wearable android

2017-02-13 Thread Marina Cuello
I think you need to use the data sync API and save the shared preferences on the normal app side. https://developer.android.com/training/wearables/data-layer/data-items.html Marina On Mon, Feb 13, 2017 at 12:34 PM, Anh wrote: > Hello, > I am encountering an issue that

Re: [android-developers] How to make an Android app which cannot be deleted event after hard reset

2017-02-14 Thread Marina Cuello
You need to talk with the OEM or the carriers and make a deal with them. That's why usually only big brands are on the factory installs :) Marina On Mon, Feb 13, 2017 at 9:33 PM, 'Jean-Baptiste Queru' via Android Developers wrote: > You can't, because this

Re: [android-developers] Saving data in wearable android

2017-02-15 Thread Marina Cuello
wrote: > Hi Marina, > Thanks for your advise but my app on smartwatch will run alone. I meant no > connection to the phone. > That's why I need to save it on the local, smartwatch. > Any ideas??? > Anh > > On Monday, February 13, 2017 at 2:49:32 PM UTC-6, Marina Cuello wrote:

Re: [android-developers] Questions about In App Purchase (In App Billing)

2017-01-18 Thread Marina Cuello
I don't know about the first issue, I'm not familiar with that framework. About the second issue, as far as I can recall you get different response codes with different situations (as when internet connection is faulty and doesn't even allow Play to show the user the purchase data), but some

Re: [android-developers] Android Facial Recognition

2017-01-19 Thread Marina Cuello
You could check https://search-codelabs.appspot.com/codelabs/face-detection https://developers.google.com/vision/ Marina On Thu, Jan 19, 2017 at 1:23 AM, Saurabh Bhairava wrote: > I am new to Android. My understanding is that there is an existing API > that can be used

Re: [android-developers] Android shows an error No Activity found to handle Intent

2017-01-19 Thread Marina Cuello
I believe ACTION_CALL_BUTTON is used on intent-filters to detect if the call button on the standard dial has been pressed. I.E. an app for a company that wants to detect if the user is calling the company or a shady app that gets some analytics from the user. It's not that usual.So perhaps there

Re: [android-developers] How do you remove an Android device from Google Android Device Manager?

2017-01-15 Thread Marina Cuello
There is an "Erase" button on the device "card" on the map on the Device Manager. Marina On Sun, Jan 15, 2017 at 1:16 PM, Mark Ellis wrote: > How do you remove an Android device from Android Device Manager? > > I added an Android device to my Google Android Device

Re: [android-developers] Can't prevent restore activity stack when launch app from overview screen after process killed

2017-01-16 Thread Marina Cuello
The dirty and easy way out is to check if there is a Bundle coming on the onCreate of all the other activities, and then kill the activity and start the one you want. Marina On Sun, Jan 15, 2017 at 6:48 PM, Maks Tuev wrote: > Reading the Android documentation and some of

Re: [android-developers] How to use jni.h for Android?

2017-01-16 Thread Marina Cuello
Hi! There is another group where you could get a better answer. Check it: https://groups.google.com/group/android-ndk Marina On Sun, Jan 15, 2017 at 7:17 PM, Zakir Maho wrote: > Hi; I want to call Java codes included Android SDK classes from C++. I > can call pure Java

Re: [android-developers] How do you remove an Android device from Google Android Device Manager?

2017-01-16 Thread Marina Cuello
vice from my Device Manager > > On Sunday, 15 January 2017 18:40:37 UTC, Marina Cuello wrote: >> >> There is an "Erase" button on the device "card" on the map on the Device >> Manager. >> >> Marina >> >> -- > You received this m

Re: [android-developers] Stream of data between application

2017-01-20 Thread Marina Cuello
I'm taking it as you will create not only your app but also some kind of library that third party apps could implement on their side to get and use your data. Other than those options you mentioned, I guess you could use a UDP server on your app and a client on the library side. Marina On Fri,

Re: [android-developers] Activity closing prematurely

2017-03-01 Thread Marina Cuello
Your code is quite difficult to read on a text editor, because of the crazy naming convention. It's much more time than what I can devote today. But if this SelectPlayer activity is the one opening in a wrong time, your problem is probably in the other activity, the one that has the

Re: [android-developers] LE Advertising on Android

2017-03-01 Thread Marina Cuello
I believe you don't have specific options, just some presets. Check this out: https://developer.android.com/reference/android/bluetooth/le/AdvertiseSettings.html Marina On Mon, Feb 27, 2017 at 5:41 AM, Sayu Sekhar wrote: > I am trying to create an LE Peripheral App on

Re: [android-developers] LE Advertising on Android

2017-03-01 Thread Marina Cuello
<sayu.sek...@agiliad.com> wrote: > Thanks Marina > I had gone through the posted link and wanted to know if I can know the > part of Android source which sets the advertising interval. > > -Sayu > > On Wednesday, March 1, 2017 at 6:30:55 PM UTC+5:30, Marina Cuello wrote: >

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

[android-developers] Is there an admin here?

2016-11-14 Thread Marina Cuello
The recruiters ruined this group. It didn't had much action already, but now I can't even see the real questions on the sea of irrelevant job postings. Marina -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To unsubscribe from this group

Re: [android-developers] I can't get Speaker Phone to work on my App

2016-11-18 Thread Marina Cuello
Could you please add the code you're using to play sound? It's not easy to help you with the info you posted. Marina On Fri, Nov 18, 2016 at 11:45 AM, Timothy Hopfer wrote: > No matter what combination I have tried, I do not seem to be able to get > the speakerphone to

Re: [android-developers] disable autostart app after crash

2016-11-18 Thread Marina Cuello
The usual workaround is to implement an UncaughtExceptionHandler to save some kind of flag when your app crashes, and then check for it when your activities start. If it's there, reset the flag and finish the activity. The good way to do it is to make your activities restore gracefully no matter

Re: [android-developers] With beta version build I charged for in app subscription.

2016-11-18 Thread Marina Cuello
The user needs to be registered as beta/alpha user for your Account --not your app-- at the Google Play Developer Console to avoid getting charged. Here is the link to the docs: https://developer.android.com/google/play/billing/billing_admin.html#billing-testing-setup When you try to buy an item

Re: [android-developers] Adding Android platform to company website

2016-12-13 Thread Marina Cuello
Perhaps you could use the tool they use in Android Arsenal? It's called appetize.io https://appetize.io/ It's not free, but perhaps it suits your needs. Marina On Fri, Dec 9, 2016 at 2:30 PM, Benjamin McCay wrote: > Hello everyone, > > I'm currently trying to implement

Re: [android-developers] Re: RecyclerView with wrap_content height, inside ScrollView is not working in marsmallow and above devices.

2016-12-13 Thread Marina Cuello
Thanks for posting the answer to your own question! It can help people on future searchs :) Marina On Mon, Dec 12, 2016 at 3:34 AM, Laxman Singh wrote: > Fixed using android.support.v4.widget.NestedScrollView instead of > Scrollview. > > > On Monday, December 12,

Re: [android-developers] Can't enable DEBUG & VERBOSE for Huawei Android Logcat

2016-12-13 Thread Marina Cuello
Try with adb shell setprop log.tag.TagYouUseInYourApp DEBUG Marina On Tue, Dec 13, 2016 at 1:52 PM, Ashraf Fouad wrote: > I'm having Huawei Nova Plus > I just > found that Huawei only displays in its

Re: [android-developers] keytore file required

2016-12-13 Thread Marina Cuello
Yeah, you need the .keystore file and key store password, and I think you need to use also the same key alias and key password but I'm not sure. The keystore file should be property of the publisher of the app. But if you, as hiring company, didn't ask for it by contract, it can be difficult to

Re: [android-developers] Cannot download play-services-common

2016-11-30 Thread Marina Cuello
I think (https://developers.google.com/android/guides/setup) you just need to add the "compile" clause to your build.gradle file to use the client. compile 'com.google.android.gms:play-services:10.0.1' On Wed, Nov 30, 2016 at 12:15 PM, Louis TREBUCHET wrote: > I am

Re: [android-developers] No data shown in my Recyclerview

2016-12-02 Thread Marina Cuello
Hi! Are you calling recyclerView.setLayoutManager(somelayout) somewhere outside the code you pasted? "In contrast to other adapter-backed views such as ListView or GridView

  1   2   >