[android-developers] Soporte diferentes tamaños de pantallas-Support diferrent multiple screens

2016-01-14 Thread Freddy Aparicio
Tengo la duda al crear los diferentes soportes de pantallas para los layouts y drawables, Yo cree en el caso de los layouts por la opción que dice new->directory y ni por la de ->new android resource directory. Hay algún problema al hacer esto??? -- You received this message because you are

[android-developers] What is the expected response from Google Play LVL for a user not in your “testing access” list?

2013-09-11 Thread Freddy
I've been running tests on the Google Play LVL api for Android. This article *https://support.google.com/googleplay/android-developer/answer/186378?hl=en *https://support.google.com/googleplay/android-developer/answer/186378?hl=en states the expected results of the primary developer account

[android-developers] Re: How to use an AIDL across different package names?

2012-05-01 Thread Freddy
Hi Mark, thank you for the response. I have some additional questions about moving the AIDL below ... On May 1, 4:28 am, Mark Murphy mmur...@commonsware.com wrote: On Tue, May 1, 2012 at 1:48 AM, Freddy f...@charter.net wrote: I'm creating a remote service with an AIDL.  I've developed

[android-developers] Re: How to use an AIDL across different package names?

2012-05-01 Thread Freddy
be resolved to a type and does not match the expected package errors I've been getting must be due to some other issue how my project is setup. I'll work through those since the design is valid. On May 1, 11:37 am, Mark Murphy mmur...@commonsware.com wrote: On Tue, May 1, 2012 at 2:24 PM, Freddy f

[android-developers] Re: How to use an AIDL across different package names?

2012-05-01 Thread Freddy
here in hope this will benefit others. On May 1, 12:31 pm, Mark Murphy mmur...@commonsware.com wrote: On Tue, May 1, 2012 at 3:21 PM, Freddy f...@charter.net wrote: Thanks Mark.  I appreciate you confirming that this design is possible.  I hoped/assumed it would be similar to other languages

[android-developers] Re: How to use an AIDL across different package names?

2012-05-01 Thread Freddy
No applogies necessary. Without your insight I might have given up and coded a less robust solution. I really appreciate your very timely and helpful responses. Keep up the great work! On May 1, 2:02 pm, Mark Murphy mmur...@commonsware.com wrote: On Tue, May 1, 2012 at 4:58 PM, Freddy f

[android-developers] How to use an AIDL across different package names?

2012-04-30 Thread Freddy
Hello, I'm creating a remote service with an AIDL. I've developed the service using the package name package com.mycompanyname.myservice; I want to provide the AIDL (and my api interface docs) to a third- party so they can build an activity and utilize my service. If their package is named

[android-developers] Preferred method to open the Image Gallery? My previous implemention no longer works

2010-10-14 Thread Freddy
I've had an app on the market for over a year. Recently customers have been reporting a crash; all customers have been running Android 2.1 or 2.2 (note sure if the crash is limited to those platforms tho; interesting that this does work on the simulator but not physical devices. Maybe devices

[android-developers] Re: FileObserver not returning file changes within subfolders?

2010-10-12 Thread Freddy
/thread/fb24c672bb79d7c2 On Oct 12, 12:13 am, FrankG frankgru...@googlemail.com wrote: Hi Freddy, strange .. I thought the FileObserver uses Linux native call inotify , which is able to send events for directories too, What definitly will not work is FileObserver for sysfs entries. Good luck

[android-developers] FileObserver not returning file changes within subfolders?

2010-10-11 Thread Freddy
The FileObserver class doesn't appear to be working as advertised. I created a class extending the FileObserver class. I initialize the class to watch the path of the sdcard as returned from the Android Environment.getExternalStorageDirectory function. Everything seems to work perfectly as long

[android-developers] Re: FileObserver not returning file changes within subfolders?

2010-10-11 Thread Freddy
ok. I found more info. Apparently the docs are incorrect. FileObserver does not support recursive file watching. On Oct 11, 1:50 pm, Freddy f...@charter.net wrote: The FileObserver class doesn't appear to be working as advertised. I created a class extending the FileObserver class.  I

[android-developers] Re: How can I launch the built-in picture viewer app from my app?

2009-02-25 Thread Freddy
- http://developer.android.com/reference/android/provider/MediaStore.Im... Maybe also have a look at - http://developer.android.com/reference/android/media/MediaScannerConn... Regards On Feb 10, 5:12 pm, Freddy f...@charter.net wrote: ok, thanks, I got the picture viewer to spawn

[android-developers] Re: How can I launch the built-in picture viewer app from my app?

2009-02-25 Thread Freddy
Thanks but I'm trying to insert a photo into the android photo gallery viewer so the photo is immediately viewable. Basically I need the gallery to rebake and display new content. Your sample appears to handle the other direction (accepting a photo from the viewer) which is not what I need. On

[android-developers] crash in com.android.camera after calling Images.Media.insertImage

2009-02-23 Thread Freddy
I'm running android sdk v1.1-r1 testing with a T-Mobile G1 device HT841GZ04082. I have a jpg on the sdcard that I want to add to the photo viewer. I do this quite simply with the test code Bitmap bm = BitmapFactory.decodeFile(/sdcard/test.jpg); String test =

[android-developers] How can I launch the built-in picture viewer app from my app?

2009-02-09 Thread Freddy
I don't want to re-invent the wheel and would like to use the existing android picture viewer. I've found some intents to launch built-in android app such as the dialer Intent intent = new Intent(Intent.ACTION_MAIN);

[android-developers] Re: How can I launch the built-in picture viewer app from my app?

2009-02-09 Thread Freddy
Intent i = new Intent(Intent.ACTION_VIEW); Uri u = Uri.withAppendedPath (MediaStore.Images.Media.INTERNAL_CONTENT_URI, ); i.setData(u); startActivity(i); On Feb 9, 12:09 pm, Freddy f...@charter.net wrote: I don't want to re-invent the wheel and would like to use

[android-developers] Re: How can I launch the built-in picture viewer app from my app?

2009-02-09 Thread Freddy
for is: com.android.camera.ImageGallery2 On Feb 9, 12:09 pm, Freddy f...@charter.net wrote: I don't want to re-invent the wheel and would like to use the existing android picture viewer.  I've found some intents to launch built-in android app such as the dialer                         Intent intent

[android-developers] How to best build Android SDK samples in Eclipse?

2008-12-04 Thread Freddy
I installed the Android SDK and Eclipse and built some simple apps using the new Andriod Project wizard. Now I would like to build/debug some of the nice apps included with the SDK (samples\ApiDemos\src\com \example\android\apis\app) . For example, there's a PreferencesFromCode.java sample I

[android-developers] Re: How to best build Android SDK samples in Eclipse?

2008-12-04 Thread Freddy
project wizard, and select create project from existing source. You can then point the wizard to the ApiDemos folder. Xav On Thu, Dec 4, 2008 at 11:26 AM, Freddy [EMAIL PROTECTED] wrote: I installed the Android SDK and Eclipse and built some simple apps using the new Andriod Project wizard

[android-developers] Re: Is it possible to add a custom link in the Share Picture Via dialog?

2008-11-25 Thread Freddy
: android.intent.category.DEFAULT mimeType: image/* If you look at the AndroidManifest.xml for the Mms application in the git repo you can see an example of it. b On Sat, Nov 22, 2008 at 10:11 PM, Freddy [EMAIL PROTECTED] wrote: After taking a picture on the G1 the user is prompted with Save | Set As | Share

[android-developers] Is it possible to add a custom link in the Share Picture Via dialog?

2008-11-23 Thread Freddy
After taking a picture on the G1 the user is prompted with Save | Set As | Share | Delete. If Share is selected then they're taken to a Share Picture Via dialog. Currently the options Google mail and Messaging are in the dialog. I want to add a link to my program which can share the photo with