[android-developers] AppReview: Blurzapp - Domain Messenger

2015-12-22 Thread blurzapp
Hi android guys. Maybe this is not properly place to ask that, but I am kind lost to find out how to improve my app. Recently I released a new chat app, focus on domain group messages. What I mean is, only users under repective domain can join your group and it is tottaly anonymous.

[android-developers] Re: How to store videos with similar naming scheme as stock camera, but in custom camera app

2015-12-22 Thread David Karr
On Tuesday, December 22, 2015 at 12:49:55 AM UTC-8, gjs wrote: > > Hi, > > MediaScannerConnection scanFile() (& the equivalent Intent), is just a > request to the OS, it does provide an on completion listener to let you > know when it is finished the request, but that doesn't necessarily mean it

[android-developers] Anyone use Google Slides in Android App? Want to automatically start slides and be able to control speed

2015-12-22 Thread gabbydeveloper
Hi I want to use Google Slides to do a presentation within an Android App. Is there a way to pro-grammatically set the Google Slides to start automatically? Is there a way to pro-grammatically control the speed of the slide show? Thanks Gabby -- You received this message because you are

[android-developers] Android app to Chromebook

2015-12-22 Thread gabbydeveloper
Hi, I have an Android app which works on tablets. Eventually I plan to sell the app but would also like to sell it for use on Chromebooks. I am not sure the best way to convert or test my android app on the Chromebooks How can I test it on a Chromebook? Side Load it? Use ARC welder?

[android-developers] Android Camera 2 close Daemon Warning

2015-12-22 Thread Z Pavel
Does someone know about how to prevent android camera 2 close daemon warning : 11-18 22:49:26.330 32353-32365/zpavel.com.myapplication W/MessageQueue: Handler (android.os.Handler) {37798789} sending message to a Handler on a dead thread 11-18 22:49:26.330 32353-32365/zpavel.com.myapplication

Re: [android-developers] NEED HELP!!! How can I get history from Android browser in Android M without READ_HISTORY_BOOKMARKS permission?

2015-12-22 Thread Dielson Sales
Seems like they don't want you to do that anymore : If your app targets Android 6.0 (API level 23) or higher, don't access > bookmarks from the global provider or use the bookmark

[android-developers] I would like to know if anyone is able to manage their permissions which drop down for their downloaders

2015-12-22 Thread igigsales
Hi I'm manager of iGig I would like to know if anyone is able to manage their permissions when customers download so they do now appear or can be reapplied or reworded - the feedback I'm getting so far with current permissions is that it perceived as a threat to privacy. I see there is an

[android-developers] Re: SharedPreferences doesn't work for my app but other apps is ok.

2015-12-22 Thread Cihan KALOĞLU
Hi Vishal, That code block for SharedPreferences example. It always run for every app. Tried that many times everthing is ok. However it does not working in my existing app. I checked many different way but it didn't. I looking for what is wrong with my app? 22 Aralık 2015 Salı 09:20:09 UTC+2

Re: [android-developers] Re: SharedPreferences doesn't work for my app but other apps is ok.

2015-12-22 Thread Cihan KALOĞLU
It is not just a class. It's big bussines app. I tries diffrent clas but doesnot work. Sorry i can't share app source it's not mine. 22 Ara 2015 13:00 tarihinde "VISHAL TIKKU" yazdı: > Can you share me the complete code of the class in which you have > implemented this

[android-developers] Re: Best strategy for emitting countdown tones for shutter delay like stock camera app

2015-12-22 Thread gjs
Hi, Ok here's two simple example (sine wave) tone generators, one uses the 'streaming' method and the other uses the 'static' method, this relates to how the associated memory is allocated / managed. The information / tradeoffs - 'streaming' is useful where sounds might be changed

[android-developers] Re: SharedPreferences doesn't work for my app but other apps is ok.

2015-12-22 Thread VISHAL TIKKU
Can you share me the complete code of the class in which you have implemented this shared preference block On Monday, December 21, 2015 at 4:08:28 PM UTC+5:30, Cihan KALOĞLU wrote: > > Hi, > > I tried all ways how many i know. > > That is my code block for test. (MainActivity.onCreate()) > >

[android-developers] Re: How to store videos with similar naming scheme as stock camera, but in custom camera app

2015-12-22 Thread gjs
Hi, MediaScannerConnection scanFile() (& the equivalent Intent), is just a request to the OS, it does provide an on completion listener to let you know when it is finished the request, but that doesn't necessarily mean it actually or immediately performs the 'scanning' for you request, it

[android-developers] Re: Best strategy for emitting countdown tones for shutter delay like stock camera app

2015-12-22 Thread gjs
Hi, re Is the AudioTrack itself reusable? Can I simply construct it and set its properties and then play it multiple times? Kind of, you could instantiate the samples (memory) ahead of time and retain these for (re)playing with AudioTrack multiple times but it seems you need to call stop()

[android-developers] Enable 64-bit mode for a Cortex-A53/ARM-v8a device?

2015-12-22 Thread noloader
I purchased a used Samsung Galaxy Core Prime for testing. It has a Cortex-A53/ARM-v8a (Qualcomm's SnapDragon 410) and it is powered by Android 5.1.1. The Cortex-A53/ARM-v8a is a 64-bit architecture. However, when I cat /proc/cpuinfo, it appears to be in a 32-bit mode (see below). How do I

[android-developers] Re: Best strategy for emitting countdown tones for shutter delay like stock camera app

2015-12-22 Thread David Karr
On Tuesday, December 22, 2015 at 12:14:37 AM UTC-8, gjs wrote: > > Hi, > > Ok here's two simple example (sine wave) tone generators, one uses the > 'streaming' method and the other uses the 'static' method, this relates to > how the associated memory is allocated / managed. > > The information /

[android-developers] App unfortunately closed in Android emulator. Help me

2015-12-22 Thread Chithra Sarathy
Hai to everybody, I try to call web service in android android. but the application is unfortunately stopped. The warning is *1. *Process: com.example.pc3.webserrest, PID: 2260 *java.lang.RuntimeException*: Unable to start activity

Re: [android-developers] Re: SharedPreferences doesn't work for my app but other apps is ok.

2015-12-22 Thread Cihan KALOĞLU
Thank you. Tried completely same step. But it working with all other apps new or existing. Just not working with my app. 22 Ara 2015 14:14 tarihinde "VISHAL TIKKU" yazdı: > Its okay no issues.Test case to test this functionality are as > follows: > 1. In your code write

Re: [android-developers] Re: SharedPreferences doesn't work for my app but other apps is ok.

2015-12-22 Thread VISHAL TIKKU
Then there can only be one case that is preventing execution of the code ie check for return statement or system.exit or if block is inside any loop check for break..just dry run it put appropriate debug pointers... On Dec 22, 2015 6:04 PM, "Cihan KALOĞLU" wrote: > Thank

Re: [android-developers] Re: SharedPreferences doesn't work for my app but other apps is ok.

2015-12-22 Thread Cihan KALOĞLU
If I didn't kill app. Its seems ok. Shared preferences object has "email". When I killed app, Shared preferences empty. 22 Ara 2015 15:08 tarihinde "VISHAL TIKKU" yazdı: > Then there can only be one case that is preventing execution of the code > ie check for return

Re: [android-developers] Re: SharedPreferences doesn't work for my app but other apps is ok.

2015-12-22 Thread VISHAL TIKKU
Its okay no issues.Test case to test this functionality are as follows: 1. In your code write an else block in which provide a toast message and also in your if block provide a different toast message. 2. Clear yours app's cache and data from settings of the phone. 3. Run your code and see if

[android-developers] Use of GeoCoder class for getting address

2015-12-22 Thread anu sridhar
HI All, I am using GeoCoder class for getting the addressof a location with the below code Geocoder geocoder = new Geocoder(this, Locale.getDefault()); addresses = geocoder.getFromLocation(latitude, longitude, 1); I already have the latitude and the longitude of the location. The problem is

[android-developers] Is there faster way to join Test Cloud?

2015-12-22 Thread Schultz9999
Looks like they are it beta and I can simply start using Google Test Cloud. Any one has an invite maybe? -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To unsubscribe from this group and stop receiving emails from it, send an email to

Re: [android-developers] App unfortunately closed in Android emulator. Help me

2015-12-22 Thread Davi Albuquerque Vieira
"Your content must have a ListView whose id attribute is 'android.R.id.list'"... Did you check your layout file? It must have this listview with this id... 2015-12-22 6:00 GMT-02:00 Chithra Sarathy : > Hai to everybody, > > I try to call