[android-developers] Delete an application from google play store

2015-12-30 Thread Tomas Bortoli
I would delete the application because I've done a refactoring on the code and also the application id is changed on something more accurate and the dev console doesn't let me upload the new one because the ID is different! I read on the web that isn't possible to accomplish this. Really? Why?

[android-developers] Why play-servies-location had dependency on play-services-maps?

2015-07-28 Thread Tomas Prochazka
Can you somebody explain me why *play-services-location* has depency on *play-services-map*? It doesn't make sense. If you want only get position you don't need whole map rendering core, it something like 2000 methods in the map package. In reverse way it make sense. Map must have dependency on

[android-developers] a way to generate regular events within an application

2014-06-14 Thread Alex Tomas
Hi, I'm trying to re-use custom hardware to control the application. Basically, a tablet is connected to that hardware via BT/rfcomm. the hardware is sort of a very specific keyboard (not HID). I'd like to recognize some of BT messages like arrow keys, Enter, Esc within that application. I'd

[android-developers] Convert touch event coords to opengl (without offset)

2012-09-23 Thread Tomas Kislan
Hello, I have a problem with implementing touch events on GLSurfaceView views size is 1280x696, because of android 4 status bar at bottom, (screen resolution is 1280x800) but ontouchlistener is receiving touch events with coords [646.0,739.0], and thus my gluunproject method fails to return

Re: [android-developers] Problem in getting height of contetn in Webview

2012-08-01 Thread Tomas Prochazka
In WebViewClient.onPageFinished is getContentHeight still 0 :-( Dne čtvrtek, 10. června 2010 3:17:19 UTC+2 yangjian napsal(a): Did you show the webview in a activity? If you are not show it the getContentHeight() will return 0; Try to call getContentHeight use the WebView reference

[android-developers] Problem with android.hardware.screen.portrait a requirement

2012-08-01 Thread Tomas Prochazka
I found interesting Google Play behavior. If I have in my app at least one activity with * android:screenOrientation=portrait* it automaticaly set feature * android.hardware.screen.portrait* a requirement. This is logical. If device doesn't have portrait mode application will not work. But which

[android-developers] LinearLayout divider broken in ICS?

2012-07-19 Thread Tomas Prochazka
I tried to use android:divider=@drawable/star_off android:showDividers=middle I spent half a day looking for the bug in my code. Than I trying to other android version. On the Android 3.x everything is OK, the same on the 4.1, but on 4.0 it is broken, delimiter will draw not in the gap between

[android-developers] browsing with a hardware keyboard on 2.3.4

2012-02-05 Thread Alex Tomas
hello, i was trying to use usb keyboard with 2.3.4 and found I can't follow links with the enter key. iirc, everything was fine with 2.1. any ideas what's wrong? thanks, Alex -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this

[android-developers] Is possible use AlarmManager to schedule run a Service

2012-01-19 Thread Tomas Prochazka
I use this code to to schedule run Service. AlarmManager alarmManager = (AlarmManager) getSystemService(Context.ALARM_SERVICE); Intent i = new Intent(this, MyService.class); PendingIntent pintent = PendingIntent.getService(this, 0, i, PendingIntent.FLAG_UPDATE_CURRENT);

[android-developers] Block and resend MMS notification later

2011-12-16 Thread Tomas Prochazka
I'm developing application which can block unwanted calls, sms and MMS. If call or SMS is blocked, user can see it in log. Only problem are MMS. I get only notification header which contain only sender phone number, expiration, type and URL to message body. I want give use possibility to read

[android-developers] Android - dynamic web image - GUI

2011-10-24 Thread Tomas
Hi there, I am struggling how to define the image in my relative layout which will differ in size for different densities (but I am going to load this image from the web so I guess I can't use those dpi folders in my app for this). I am developing an app which displays information about the book

[android-developers] Re: Android - dynamic web image - GUI

2011-10-24 Thread Tomas
...@gmail.com wrote: Try androidquery.com library look for image loading and aspect ratio. On Oct 24, 7:31 am, Tomas tomas.ad...@gmail.com wrote: Hi there, I am struggling how to define the image in my relative layout which will differ in size for different densities (but I am going

[android-developers] Re: ViewFlipper animation and Gallery on the same activity

2011-08-25 Thread Tomas Prochazka
I found that it maybe doesn't cause animation but child.setVisibility(View.GONE) in ViewAnimator class. I tried to call setVisibility(View.GONE) on some my object during Gallery swype and it also cause stop animation of swiping. On Aug 24, 8:39 pm, Tomas Prochazka tomas.procha...@gmail.com wrote

[android-developers] Re: ViewFlipper animation and Gallery on the same activity

2011-08-25 Thread Tomas Prochazka
It is caused by child.setVisibility(View.GONE); in ViewAnimator class it cause remeasure and redraw of whole activity screen :-( I used source code put in on own package and modify it to child.setVisibility(View.INVISIBLE); On Aug 25, 10:33 am, Tomas Prochazka tomas.procha...@gmail.com wrote: I

[android-developers] ViewFlipper animation and Gallery on the same activity

2011-08-24 Thread Tomas Prochazka
Hi. I have ViewFlipper and the Gallery on the same activity. ViewFlipper periodically switch two view with simple fade animation. Problem is when I scrolling in Gallery at every switch start, Gallery stop animation and jump to nearest item. Is almost impossible to scroll if switch period is too

[android-developers] design of accessing to system service

2011-06-13 Thread Tomas Prochazka
I still can't understand some aspects of Android API design or reason to use this design. For example why Android use this: AlarmManager am = (AlarmManager)getSystemService(Context.ALARM_SERVICE); instead of much easier: AlarmManager am = getSystemService(AlarmManager.class);

[android-developers] Re: Java source code for SDK API 11 12

2011-06-07 Thread Tomas Prochazka
Yes, Java was source.zip included also when it was not open sources :- ( But I Have real question. I use google ImageLoader in my app, it works on all Android, but not on 3.1 (Motorola Xoom) It is impossible to find solution without source of framework classes. I tried to use source code of

[android-developers] Re: Java source code for SDK API 11 12

2011-06-07 Thread Tomas Prochazka
Yes and also exists plugin which can provide source code of framework automatically http://code.google.com/p/adt-addons/ (only to API level 9 for now) On Jun 7, 11:00 am, Kostya Vasilyev kmans...@gmail.com wrote: Chris, You don't need to sync up the entire repo just to get the framework

[android-developers] Java source code for SDK API 11 12

2011-06-06 Thread Tomas Prochazka
I know that Google don't open source whole Android 3.0 and 3.1 for some reason. But how I can work on application for Honeycomb tablets without source code of java framework classes? I don't need whole source to compile android, I need only trace and debug me code inside to framework classes or

[android-developers] Re: Java source code for SDK API 11 12

2011-06-06 Thread Tomas Prochazka
SDK for Android 3.0 and 3.1 with API level 11 and 12 is public available! Only source code for java classes used in framework (11 and 12) not. And in this see problem. On Jun 6, 5:43 pm, Prakash Iyer thei...@gmail.com wrote: Really? I'd love to see the code open sourced as well but I am not sure

[android-developers] Re: Java source code for SDK API 11 12

2011-06-06 Thread Tomas Prochazka
And I don't wrote anything about that I need this source code for compile my application. I only wrote that I need them to trace debug framework classes to better understand how it works, if Javadoc is not enough to help me. On Jun 6, 5:43 pm, Prakash Iyer thei...@gmail.com wrote: Really? I'd

[android-developers] Re: Java source code for SDK API 11 12

2011-06-06 Thread Tomas Prochazka
, and it will eventually  be available, but it's not like developers have the source to iOS, Windows, Mac OS, or most other platforms they develop for. On Mon, Jun 6, 2011 at 8:53 AM, Tomas Prochazka tomas.procha...@gmail.comwrote: And I don't wrote anything about that I need this source code

Re: [android-developers] Use standard system browser for OAuth / Keep browser out of history

2011-04-11 Thread Tomas Prochazka
For example possibility to close browser and go back to preview task would be great. But now is to late. It would be usable after few year. -- 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] Re: Problems with Activity Flow during OAUTH Authentication

2011-04-10 Thread Tomas Prochazka
I found that the FLAG_ACTIVITY_NO_HISTORY for browser works, but only if the browser was not running before. If I restart Android and run my app which call browser everything work well. But when I start browser before my app, browser will stay in history. Related question, but also without

Re: [android-developers] Re: Tasks browser activity

2011-04-10 Thread Tomas Prochazka
WebView has two disadvantages 1.) It is security holes. App which open OAuth authorization page in WebView can acces my password 2.) In standard browser I have stored password and I don't need enter it again and again in every app which need acces to me twitter. -- You received this message

[android-developers] Re: Activity stack with browser and protocol handler

2011-04-10 Thread Tomas Prochazka
Yo can use intent.setFlags(Intent.FLAG_ACTIVITY_NO_HISTORY); But I found that this work only if the browser was not running before. If I restart Android and run my app which call browser with this intent everything works well. But when I start browser before my app, browser will stay in

[android-developers] Use standard system browser for OAuth / Keep browser out of history

2011-04-10 Thread Tomas Prochazka
I want use system browser for Twitter/Foursquare OAuth authorization. I think that this is safer then open browser in Webview directly in my app. System browser also can remember user password and he can't enter it again and again. My idea is open the browser via standard intent Intent

Re: [android-developers] Use standard system browser for OAuth / Keep browser out of history

2011-04-10 Thread Tomas Prochazka
Thanks you for reply. But this is not good message. I think that this scenario should be supported by Android. I can integrate Webview to my app but use standard browser is much much better because it can remember user credentials, so user can't enter password again for any new twitter app

[android-developers] API to provide isSimSupportingPaidApps()

2010-01-25 Thread Tomas
can write the JAVA function myself, by using fx. TelephonyManager.getSimCountryIso(). But as the list of countries is changing, it would be better if Google or OHA maintained the list (perhaps through the API). BR /Tomas -- You received this message because you are subscribed to the Google Groups

[android-developers] Problem with getLastKnowLocation from the GPS provider

2009-11-25 Thread Tomas Malmsten
own thread by a service. If anyone have any ideas on how to solve this it would be greatly appreciated. Regards Tomas Malmsten www.mashmobile.com -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android

[android-developers] Re: startActivity in another package

2009-11-24 Thread Tomas
other developers achieve this when fx including an Apache licensed piece of software in your application? Regards /Tomas -- 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@googlegroups.com

[android-developers] Re: startActivity in another package

2009-11-24 Thread Tomas
=test.current.MyActivity/ activity android:name=test.another.MyActivity/ ... What I was doing wrong was setting the wrong packagename on the intent, see my first post to compare. Regards /Tomas -- You received this message because you are subscribed to the Google Groups Android Developers group

[android-developers] startActivity in another package

2009-11-23 Thread Tomas
I have splitted my Android project in 2 packages, lets say: test.current and test.another. From an activity in test.current I want to start an activity in the package test.another Intent i = new Intent(); i.setClassName(test.another, test.another.MyActivity); startActivity(i);

[android-developers] Re: How to set the unlock pattern?

2009-11-22 Thread Tomas
Another way to see it is that there might be an intent for the Gesture builder (introduced in SW 1.6). Allowing application developers to letting the users create custom gestures for whatever purpose... Is that planned in a future release? -If not, why? -- You received this message because you

[android-developers] Re: How to set the unlock pattern?

2009-11-06 Thread Tomas
Ok, what I mean is not setting it programatically, but bring up the Android system default activity for setting the unlock pattern. Just like there is an intent for fx the Android system default ringtonepicker there could be one for setting the unlock pattern. But I guess you are right, it is not

[android-developers] How to set the unlock pattern?

2009-11-05 Thread Tomas Sjöberg
How to set the unlock pattern? Is that an intent? BR /Tomas -- 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@googlegroups.com To unsubscribe from this group, send email to android

[android-developers] How to preselect an uri in musicpicker

2009-11-05 Thread Tomas Sjöberg
Hi, I am using the builtin musicpicker via the intent ACTION_GET_CONTENT and the type audio/*. How do I preselect a song based on the content uri the user picked the last time he was in the musicpicker? I have the uri but dont know where/how to set it. -- You received this message

[android-developers] How to preselect an uri in musicpicker

2009-11-05 Thread Tomas
Hi, I am using the builtin musicpicker via the intent ACTION_GET_CONTENT and the type audio/*. How do I preselect a song based on the content uri the user picked the last time he was in the musicpicker? I have the uri but dont know where/how to set it. -- You received this message because you

[android-developers] How to preselect an uri in musicpicker

2009-11-05 Thread Tomas Sjöberg
Hi, I am using the builtin musicpicker via the intent ACTION_GET_CONTENT and the type audio/*. How do I preselect a song based on the content uri the user picked the last time he was in the musicpicker? I have the uri but dont know where/how to set it. -- You received this message because

[android-developers] kiosk mode possible?

2009-11-02 Thread Enrique Tomas
Hi all! I am a sound artist and programmer developing an app that needs to run under a kiosk mode for an exhibition (BTW is there any track of artistic projects made with Android?). Kiosk mode is when you want to enable users to use a certain app and not be able to click on anything else. Of

[android-developers] kiosk mode for an artistic project

2009-10-27 Thread Enrique Tomas
Hi all! I am a sound artist and programmer developing an app that needs to run under a kiosk mode for an exhibition (BTW is there any track of artistic projects made with Android?). Kiosk mode is when you want to enable users to use a certain app and not be able to click on anything else. Of