[android-developers] Re: Multicast and WiFi tethering

2016-03-11 Thread Viktor Kessler
Hi, did you solve the Problem? I have the same chellange as you back in 2011 and don't undestand why the Tehtering Phone is not participating in multicast session. Thx, Viktor Am Dienstag, 19. Juli 2011 12:41:30 UTC+2 schrieb Erik Hellman: > Hi, > > I got an application t

[android-developers] Service that recieves touch coordinates

2012-10-12 Thread Viktor Lee
I m currently writing a service that can read click coordinates via a service. I m now able to recieve the coordinates and write them to an external file but the click is not being passed to the main application even with the use of FLAG_NOT_TOUCH_MODAL. This result in total no respond from

[android-developers] When will releaseYoutube Android Player API

2012-10-03 Thread Viktor Vologzanin
Hi guys, I would like to know when will release Youtube Android API. Is there any concrete date of it? Maybe, it is possible to use demo library? If so where I can get it? I tried to use old openyoutubeactivity library to play video of different quality but there is some problem with link

[android-developers] Please help with the Error

2012-09-19 Thread viktor
From Market come a tons of errors but I do not understand what to fix. Thanks. java.lang.SecurityException: Binder invocation to an incorrect interface at android.os.Parcel.readException(Parcel.java:1327) at android.os.Parcel.readException(Parcel.java:1281) at

[android-developers] E/SurfaceTexture(78): [SurfaceView] connect: already connected (cur=1, req=4)

2012-08-21 Thread Viktor Mazurenko
Hello. I have a problem with GL surface view and camera. 08-21 09:44:09.226: I/CameraService(81): Opening camera 1 08-21 09:44:09.226: I/CameraHardwareSec(81): int android::HAL_camera_device_open(const hw_module_t*, const char*, hw_device_t**): open camera 1 08-21 09:44:09.226: E/SecCamera(81):

[android-developers] Re: How can I achieve this layout? [new to this]

2012-07-23 Thread viktor
Green - LinearLayout Black - FrameLayout Red - ImageView Button Green.addView(TextView, ...) Green.addView(Black, ...) Green.addView(Button, ...) Black.addView(Red, ...) You also can make layouts using classes. Вівторок, 17 липня 2012 р. 20:56:54 UTC+3 користувач Maksymilian Strzelecki

[android-developers] Re: Application not visible in 'complete action using ...' after the update. Can not be reverted.

2012-07-14 Thread Viktor Brešan
Unfortunately, that is not the case. 'Open dialog' shows up but my application is missing there. On Friday, July 13, 2012 6:51:02 PM UTC+2, Nobu Games wrote: Since not everybody is affected by that, my guess is that these people accidentally checked the remember my decision checkbox. Ask

[android-developers] Application not visible in 'complete action using ...' after the update. Can not be reverted.

2012-07-13 Thread Viktor Brešan
. However, even this app version did not restore the missing functionality - my application is still not listed in the dialog. I am trying to figure this out. What went wrong? How to fix it? Any ideas? Thanks in advance, Viktor. -- You received this message because you are subscribed

[android-developers] How to set up android emulator for live face detection?

2012-07-05 Thread Viktor Brešan
). Is there anything that can be done in order to enable live face detection on Android emulator? I am talking about the face detection that came with API level 14, not third party libraries. Thanks, Viktor. -- You received this message because you are subscribed to the Google Groups Android

[android-developers] Re: camera doesnt work

2012-07-03 Thread Viktor Brešan
You have to add the Hardware Property to your AVD: Configures camera facing front or Configures camera facing back and assign webcam as it's value. Kind regards, Viktor. On Sunday, June 24, 2012 1:43:08 PM UTC+2, karan hans wrote: otherwise the camera works fine with skype On Sunday, June

[android-developers] Re: is there a way to explore directory structure in assets/?

2012-06-03 Thread viktor
Have you evere worked with file system with Java? You should iterate every subdirectories(like recursive method). If you done this you will have full tree of accert folder. On 2 Чер, 22:55, Latimerius l4t1m3r...@googlemail.com wrote: There's AssetManager.list() but that doesn't seem to pick up

[android-developers] NullPointerException android.graphics.Bitmap.createBitmap(Bitmap.java:468)

2012-05-14 Thread viktor
Please help me with exception. I have single resources folder. /res/drawable I create a custom button from one of the resource with some color effect. This works for ldpi, hdpi, xdpi devices, but when I run an app on the mdpi device it crashes. My code: Bitmap b1 =

[android-developers] Re: Broadcast receiver receive empty extras

2012-04-19 Thread viktor
Didn't fix my problem, after a long time I still receive an empty Extras, it is on 2.1. On 18 Кві, 22:00, TreKing treking...@gmail.com wrote: On Wed, Apr 18, 2012 at 1:51 PM, viktor victor.scherb...@gmail.com wrote: Yes, I agree with but sometimes an Extras comes with Bundle[{}]; I don't

[android-developers] Re: Broadcast receiver receive empty extras

2012-04-19 Thread viktor
in Intent ... } I have fixed my problem with service manifest parameter( android:process=:MyService); On 19 Кві, 14:18, TreKing treking...@gmail.com wrote: On Thu, Apr 19, 2012 at 3:04 AM, viktor victor.scherb...@gmail.com wrote: Didn't fix my problem, after a long time I still receive

[android-developers] Broadcast receiver receive empty extras

2012-04-18 Thread viktor
Hi, I had a simple app that has Service and Application. Service sends broadcasts by Action with extras. Application receive this broadcast and handle some action by key that is in extras. Sometime application receive empty extras, so if I get Intent.getExtras(), the Bundle will be empty; Any

[android-developers] Service onStartCommand missing intent extras

2012-04-18 Thread viktor
Hi, I had a simple app that has Service and Application. Application starts Service by Action with extras. Service receive Intent with onStartCommand and handle some action by key that is in extras. Sometime Service receives empty extras, so if I get Intent.getExtras(), the Bundle will be

[android-developers] Re: Service onStartCommand missing intent extras

2012-04-18 Thread viktor
I had like this: App starts the service: data: Bundle[{requestId=24, requestUrl=http://www.we.we}] Service receives: data: Bundle[{}] On 18 Кві, 13:41, viktor victor.scherb...@gmail.com wrote: Hi, I had a simple app that has Service and Application. Application starts Service by Action

[android-developers] Re: Broadcast receiver receive empty extras

2012-04-18 Thread viktor
MagouyaWare Developerhttp://sites.google.com/site/magouyaware On Wed, Apr 18, 2012 at 3:00 AM, viktor victor.scherb...@gmail.com wrote: Hi, I had a simple app that has Service and Application. Service sends broadcasts by Action with extras. Application receive this broadcast and handle

[android-developers] Re: Broadcast receiver receive empty extras

2012-04-18 Thread viktor
when you start the service?  And what does your service code look like where you try to get the Intent extras? Thanks, Justin Anderson MagouyaWare Developerhttp://sites.google.com/site/magouyaware On Wed, Apr 18, 2012 at 9:49 AM, viktor victor.scherb...@gmail.com wrote: Sorry

[android-developers] Re: Broadcast receiver receive empty extras

2012-04-18 Thread viktor
/Intent.html#pu... Thanks, Justin Anderson MagouyaWare Developerhttp://sites.google.com/site/magouyaware On Wed, Apr 18, 2012 at 10:49 AM, viktor victor.scherb...@gmail.com wrote: startId -- You received this message because you are subscribed to the Google Groups Android Developers group

[android-developers] Re: Broadcast receiver receive empty extras

2012-04-18 Thread viktor
Yes, I agree with but sometimes an Extras comes with Bundle[{}]; You also can take a look to this thread: http://groups.google.com/group/android-developers/browse_thread/threa... On 18 Кві, 21:36, TreKing treking...@gmail.com wrote: On Wed, Apr 18, 2012 at 1:24 PM, viktor victor.scherb

[android-developers] Re: Simultaneously connect wifi to several wifi spots

2012-04-11 Thread viktor
Thanks On 10 Кві, 22:47, Mark Murphy mmur...@commonsware.com wrote: On Tue, Apr 10, 2012 at 1:13 PM, viktor victor.scherb...@gmail.com wrote: Can I programatically simultaneously connect to several wifi spots? So, I have 2-3 wifi routers, one of them should to conect to the local network

[android-developers] Simultaneously connect wifi to several wifi spots

2012-04-10 Thread viktor
Hi, Can I programatically simultaneously connect to several wifi spots? So, I have 2-3 wifi routers, one of them should to conect to the local network, another one to the 2nd network, 3rd to the router with internet. -- You received this message because you are subscribed to the Google Groups

[android-developers] Re: finishActivity() and singleTask mode

2012-04-10 Thread viktor
Take a look to here: http://stackoverflow.com/questions/5000787/how-to-finish-current-activity-in-android activity android:name=.LoadingScreen android:noHistory=true ... / On 10 Кві, 15:43, AndDev alo...@bgu.ac.il wrote: is there any reason why  finishActivity() isn't finishing the target

[android-developers] Re: Impossible upload an appliclation on Android Market

2012-03-14 Thread Viktor Brešan
Same problem here. I am trying whole morning.This is not the first time I am seeing this message, it happens often. Annoying. Regards, Viktor. On Monday, March 12, 2012 5:19:40 PM UTC+1, Mattia Perazzoli wrote: Hi, today I try to upload an app on the android market, but wen i press upload

[android-developers] java.lang.SecurityException: Permission Denial, but my app does not change settings

2012-03-01 Thread Viktor Brešan
I have an app with about 6,000 active users. I also use ACRA for app crash reporting. While I was going through the crash reports I have found the following exception: java.lang.SecurityException: Permission Denial: writing com.android.providers.settings.SettingsProvider uri

[android-developers] GPS hot and cold start determination

2012-02-29 Thread viktor
Hello, is it possible to determine GPS starting mode, known as cold and hot starts? I would like to create a little GPS manager, and I have to decide some power managements. Thanks. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post

[android-developers] Re: How to get coordinates of the button programmatically?

2012-02-29 Thread viktor
AbsoluteLayout.addView(View, new AbsoluteLayout.LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT, int x, int y)); On 29 Лют, 07:27, android developer android.developer4...@gmail.com wrote: I have one button in an AbsoluteLayout in an XML file. From there I am able to set the

[android-developers] Re: gps to work om emulator

2012-01-08 Thread viktor
I guess that need change the default configuration for the DDMS. Or make your own kml file and open it every time when emulator have started. On 7 янв, 09:38, jaggu mjagadeeshb...@gmail.com wrote: Hi  how to work with emulator gps can any one guide how to do ? eclipse

[android-developers] Re: ADT 15.0.1 and library dependencies problems (Conversion to Dalvik format failed with error 1)

2011-12-24 Thread Viktor Bresan
, Viktor. On Dec 12, 3:31 pm, Viktor Bresan viktor.bre...@gmail.com wrote: My project structure is the following: Java project JP Android library AL1 - depends on project JP Android library AL2 - depends on project JP Android project AP - references 3 other external libraries (acra

[android-developers] ADT 16.0.1 and library dependencies problems (Conversion to Dalvik format failed with error 1)

2011-12-21 Thread Viktor Bresan
Anyone? The problem is not fixed with the latest ADT release v16.0.1 Viktor. On Dec 14, 5:31 pm, Viktor Bresan viktor.bre...@gmail.com wrote: Anyone? The problem is not fixed with the latest ADT release v16.0.0 Viktor. -- You received this message because you are subscribed

[android-developers] ADT 16.0.0 and library dependencies problems (Conversion to Dalvik format failed with error 1)

2011-12-14 Thread Viktor Bresan
Anyone? The problem is not fixed with the latest ADT release v16.0.0 Viktor. -- 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

[android-developers] ADT 15.0.1 and library dependencies problems (Conversion to Dalvik format failed with error 1)

2011-12-12 Thread Viktor Bresan
perfectly fine with old ADT. I wish I never made this update. Please help, I would like to continue with my work! Viktor. PS: Yes, I have manually deleted references to AL1 and AL2 source code from the AP. I have cleaned and rebuild everything dozens of times this day. -- You received this message

[android-developers] Re: Auto-rotate screen flag

2011-11-20 Thread viktor
Any solutions? On 17 Лис, 21:56, viktor victor.scherb...@gmail.com wrote: Is it possible to check ifAuto-rotatescreen is aloved? -- 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

[android-developers] Auto-rotate screen flag

2011-11-17 Thread viktor
Is it possible to check if Auto-rotate screen is aloved? -- 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-developers] Re: ThreadPoolExecutor stop tasks onPause

2011-11-07 Thread viktor
Thanks, it is exactly what I need. On 4 Лис, 16:06, Streets Of Boston flyingdutc...@gmail.com wrote: shutDownNow will cancel all the pending tasks and make the Executor unavailable for any future task submissions. Instead, you'd have to keep track to any Future you have scheduled (the value

[android-developers] ThreadPoolExecutor stop tasks onPause

2011-11-04 Thread viktor
Hi, need the best advice how to manage ThreadPool. I want to stop the tasks when ListView is scrolling. If I do ThreadPoolExecutor.shutdownNow(). The pool is terminated and doesn't want execute the tasks again. How to correctly stopping the tasks? -- You received this message because you are

[android-developers] addons_list.xml - 404

2011-10-31 Thread Viktor
Hi! I wanted to download Google Maps API from the Android SDK manager (Third party add-ons), but I can't, because the https://dl-ssl.google.com/android/repository/addons_list.xml doesn't exists. Where can I inform the Google about this problem? Viktor Plézer -- You received this message

[android-developers] Re: Regarding Dynamic layout

2011-10-27 Thread viktor
And what is the problem? Use LayoutInflater.inflate, build your Layout to the View object and add under Spinner. You should get index of Spinner, and add view by index. On 27 Жов, 09:21, nageswara rao rajana nagu.raj...@gmail.com wrote: Hi,          when i select a option from a spinner a  

[android-developers] Re: layout problem

2011-10-19 Thread viktor
http://developer.android.com/reference/android/widget/ImageView.html#attr_android:scaleType set scale type to the fitXY Or you can calculate width and height for your ImageView manualy by ParentView (width, height) with correct aspect ration for your image. On 19 Жов, 13:15, vani reddy

[android-developers] Re: Oddness of ImageView

2011-10-19 Thread viktor
You should read more about android layouts, maybe your image layout is displaces other layouts if Image is bigger than display width. Please, provide your layout. On 19 Жов, 12:54, ndiiie 90 rnd...@gmail.com wrote: Hi guys, has anyone experienced the oddness of imageview? I have an

[android-developers] Add text signature to the email

2011-10-17 Thread viktor
Hi is it possible to add some signature to the email? Some plain text. Maybe there is some tricks to replace common email signature (sent from Android ...)? Mark Murphy you are great expert of Android you should know if this possible. -- You received this message because you are subscribed

[android-developers] Re: Add text signature to the email

2011-10-17 Thread viktor
Thanks! On 17 Жов, 14:38, Mark Murphy mmur...@commonsware.com wrote: On Mon, Oct 17, 2011 at 6:17 AM, viktor victor.scherb...@gmail.com wrote: Hi is it possible to add some signature to the email? Some plain text. Maybe there is some tricks to replace common email signature (sent from

[android-developers] Check App instalation way

2011-10-09 Thread viktor
Is it possible to check how an app was installed onto device? For e. : Market or it is installed by user, or it is in system folder system/app/*. -- 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: How do I can start a new Activity after 1 minute?

2011-10-09 Thread viktor
CountDownTimer, help you, you can stop timer anytime. On 9 Жов, 13:18, Zwiebel hunzwie...@gmail.com wrote: I have a button. If the user clicks on it, I want to start a new Activity after 1 minute. Between the click and the new activity, the user can click on an another button more times. How I

[android-developers] Re: Check App instalation way

2011-10-09 Thread viktor
Done! ApplicationInfo On 9 Жов, 13:20, viktor victor.scherb...@gmail.com wrote: Is it possible to check how an app was installed onto device? For e. : Market or it is installed by user, or it is in system folder system/app/*. -- You received this message because you are subscribed

[android-developers] Re: Hide Phone Number in the Dialer

2011-09-11 Thread viktor
I can proportion for you to load instance runntime and find input field. Then you can manage any data with phone number field. The same way for others views. On 11 сен, 08:44, mwllace wallace.d.m...@gmail.com wrote: Im using  and intent to invoke the default dialer and automatically call  

[android-developers] Screen capture without translation and scaling

2011-08-04 Thread viktor
Hi, I draw shapes on canvas, than export canvas to file with bitmap, but when I doing that I save only visible area? I translate canvas by dragging. Is it possible to save all drawing area? -- You received this message because you are subscribed to the Google Groups Android Developers group.

[android-developers] Translated coordinate by y when touching on a view

2011-07-05 Thread viktor
Hi, what's the problem with coordinates on Android, I draw point on 220,400 (240*400), then touch on screen, touch event return point of 220,380, where are 20 pixels? When I touch on the right-top, its OK, point 240,0. -- You received this message because you are subscribed to the Google

[android-developers] Get current phone number on multi sim devices

2011-05-23 Thread viktor
Do any work with multi sim devices where is need to get current calling number. in my case 1st sim number return always, if I get it with TelephonyManager.getLine1Number() . -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this

[android-developers] Re: Get current phone number on multi sim devices

2011-05-23 Thread viktor
, to get other phone numbers. On Mon, May 23, 2011 at 6:38 AM, viktor victor.scherb...@gmail.com wrote: Do any work with multi sim devices where is need to get current calling number. in my case 1st sim number return always, if I get it with TelephonyManager.getLine1Number

[android-developers] Re: Programmatically add contact and start Dialer with some delay

2011-05-12 Thread viktor
Any ideas? On 11 Тра, 17:23, viktor victor.scherb...@gmail.com wrote: Hi, My app create new contact, inserts it into DB, and with little delay(300 - 500 мс) Dialer  will start with number of new contact. At first try Dialer shows only a number on the Screen, after second try it shows Full

[android-developers] Re: Android Start up

2011-05-12 Thread viktor
Did you declared your activity in the manifest file? On 9 Тра, 13:19, LiTTle littlep...@gmail.com wrote: Hi everyone, I am new in android development. I am coming from J2ME. I am trying to build my first Android application. The application is Hello World as it is described at Google's

[android-developers] Programmatically add contact and start Dialer with some delay

2011-05-11 Thread viktor
Hi, My app create new contact, inserts it into DB, and with little delay(300 - 500 мс) Dialer will start with number of new contact. At first try Dialer shows only a number on the Screen, after second try it shows Full name. This action repeats every time when phone was rebooted. Somebody has

[android-developers] Re: Out of three buttons, one button is not working

2011-05-11 Thread viktor
Is Button selector switches if you push the Button? On 11 Тра, 15:28, mack2978 smashmah...@gmail.com wrote: Hi All, I am baffling with below issue. Out of three buttons, save button is not working and its onclick is not hitting. Any idea anyone.    below code and XML i am using.  

[android-developers] Re: Out of three buttons, one button is not working

2011-05-11 Thread viktor
, viktor victor.scherb...@gmail.com wrote: Is Button selector switches if you push the Button? On 11 Тра, 15:28,mack2978smashmah...@gmail.com wrote: Hi All, I am baffling with below issue. Out of three buttons, save button is not working and its onclick is not hitting. Any idea

[android-developers] android:configChanges=keyboardHidden|keyboard never handle onConfigurationChanged

2011-04-07 Thread viktor
Hi, How to handle soft keyboard state for example VISIBLE and HIDDEN? I tried with android manifest but nothing happening!!! -- 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] Chinese soft keyboard and unknown character set

2011-04-06 Thread viktor
Hi, I have got device with Chinese keyboard, when I type digits into EditText and compare it with digits from English keyboard I have different results. How to convert Chinese characters to normal charset? -- You received this message because you are subscribed to the Google Groups Android

[android-developers] Re: Chinese soft keyboard and unknown character set

2011-04-06 Thread viktor
21212 -- Input from Chinese keyboard 21212 -- From English keyboard On 6 Кві, 16:22, viktor victor.scherb...@gmail.com wrote: Hi, I have got device with Chinese keyboard, when I type digits into EditText and compare it with digits from English keyboard I have different results. How

[android-developers] Re: Start Dialer with delay

2011-04-05 Thread viktor
Have any ideas? On 4 Кві, 12:17, viktor victor.scherb...@gmail.com wrote: Hi, My issue is that need to show in Dialer correct number when incoming call, just trick number in Dialer. I tried to add temp contact to contacts DB, but Dialer doesn't sync the contact!? Is it possible to start

[android-developers] Start Dialer with delay

2011-04-04 Thread viktor
Hi, My issue is that need to show in Dialer correct number when incoming call, just trick number in Dialer. I tried to add temp contact to contacts DB, but Dialer doesn't sync the contact!? Is it possible to start Dialer with some delay or deny starting and then restart it? -- You received

[android-developers] Re: Animated Application icons

2011-03-23 Thread Viktor Lannér
://developer.android.com/guide/topics/appwidgets/index.html Viktor Lannér -- 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-developers

[android-developers] Change incoming name in Dialer

2011-03-09 Thread viktor
Hi, Is it any tricks to change name in Dialer on the fly (when dialer is in Ringing state )? In dialer we can see Name with label Unknown, I want to replace it on my own label. Thanks -- You received this message because you are subscribed to the Google Groups Android Developers group. To

[android-developers] Re: Change incoming name in Dialer

2011-03-09 Thread viktor
approval, of course). Dirk On Mar 9, 2:58 am, viktor victor.scherb...@gmail.com wrote: Hi, Is it any tricks to change name in Dialer on the fly (when dialer is in Ringing state )? In dialer we can see Name with label Unknown, I want to replace it on my own label. Thanks

[android-developers] Re: Saving layout file is very slow with Eclipse / ADT

2011-02-19 Thread viktor
Make your Layout in classes it takes 1-3 seconds. On 20 Лют, 06:56, Zsolt Vasvari zvasv...@gmail.com wrote: Yes, this is a very long standing bug.  Up until 1-X files, the build process is fast, once you hit X+1, it becomes unbearably slow.  I've lived with this issue for the past year

[android-developers] Display map overlay always on top

2011-02-15 Thread viktor
Hi, how I can show itemizedoverlay ahead of other? I have Next and Previous buttons, if I pressed one of them I want to move cursor to the next or previous overlay. That overlay have to displayed on top of other. Thanks. -- You received this message because you are subscribed to the Google

[android-developers] Re: Display map overlay always on top

2011-02-15 Thread viktor
You mean, if item last(index) in Overlays Collection, it have to display on top? I don't understand this issue, if it is true, that means that API always regroup all items when it was tapped. On 15 Лют, 18:16, TreKing treking...@gmail.com wrote: On Tue, Feb 15, 2011 at 10:09 AM, viktor

[android-developers] Re: Display map overlay always on top

2011-02-15 Thread viktor
---It doesn't regroup - it just draws the focused item last. OK, it is clear for me now. I try to set focus, but overlay doesn't move to the top. I've forgotten something? On 15 Лют, 18:37, TreKing treking...@gmail.com wrote: On Tue, Feb 15, 2011 at 10:32 AM, viktor victor.scherb...@gmail.com

[android-developers] Re: Display map overlay always on top

2011-02-15 Thread viktor
I get the Overlay by index from Overlays. and set with: ItemizedOverlay.setFocus(Item item); It works now, but if I scroll or zoom a map the focussed overlay gone again. On 15 Лют, 19:13, TreKing treking...@gmail.com wrote: On Tue, Feb 15, 2011 at 10:49 AM, viktor victor.scherb...@gmail.com

[android-developers] Re: OpenJDK on Android

2011-01-19 Thread viktor
I think you should change the forum. For example Spring, Java WEB development but not Android. On 14 Січ, 16:16, koala koalares...@gmail.com wrote: For god sake, how convenient would it be to have OpenJDK running on android? Imagine if we could run swing, rmi, if we could run all java code

[android-developers] Re: How to set images in screen have different click events on different area

2011-01-18 Thread viktor
you can add OnTouchListener and test area what you want. or, add layouts onto FrameLayout, where background is your image. On 18 Січ, 15:14, Faheem Khatri faheemkhatr...@gmail.com wrote: I have an single image in which it set has screen home page in which it contains 5 menu icons,so i need to

[android-developers] Android productivity with multi core processor

2011-01-18 Thread viktor
Hi, Is it need additional api to work with multi core processor, or functionality is already embedded into OS? I know that for Java VM is no matter how many cores there, but what about dalvik VM? -- You received this message because you are subscribed to the Google Groups Android Developers

[android-developers] populate ItemizedOverlay when AlertDialog is showing

2010-12-29 Thread viktor
Hi, my problem is that I can't populate overlays if AlertDialog show. I put addOverlay and populate methods to listeners OK and Cancel, but new overlay doesn't showed on map. It will update after moving a map. Is it any other way to refresh overlays? -- You received this message because you

[android-developers] Re: Outgoing call states

2010-12-27 Thread viktor
Any ideas? On 24 Грд, 15:14, viktor victor.scherb...@gmail.com wrote: Yes :), but I wrote what I catch. On 24 Грд, 14:33, Pent tas...@dinglisch.net wrote: Hi, Is it any additional listeners to listen call state such as BUSY, NO_ANSWER, I just have only CALL_STATE_IDLE

[android-developers] Re: How to exit the application..?

2010-12-27 Thread viktor
You can set for every Activities android:launchMode=singleTask ; And if you go Home, you always restart an Activity with onCreate state. On 27 Грд, 10:40, Abhilash baddam abhilash.androiddevelo...@gmail.com wrote: Hi ,      I am new to android. How can we exit from application...For example

[android-developers] Outgoing call states

2010-12-24 Thread viktor
Hi, Is it any additional listeners to listen call state such as BUSY, NO_ANSWER, I just have only CALL_STATE_IDLE, CALL_STATE_OFFHOOK? I have an app that calls the special service numbers, if one of them is busy or no answer is need to try another one. -- You received this message because you

[android-developers] Re: Outgoing call states

2010-12-24 Thread viktor
Yes :), but I wrote what I catch. On 24 Грд, 14:33, Pent tas...@dinglisch.net wrote: Hi, Is it any additional listeners to listen call state such as BUSY, NO_ANSWER, I just have only CALL_STATE_IDLE, CALL_STATE_OFFHOOK? There's RINGING too :-) Pent -- You received this message because

[android-developers] Re: Highlighting an icon in a Gallery widget

2010-12-10 Thread viktor
I propose to you use an animation. On 10 Грд, 18:15, FractalBob ruom...@gmail.com wrote: Simple and elegant; thanks, TreKing. -- 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: Edditing cache xml file

2010-12-10 Thread viktor
TreKing is right, database is the fastest of your cases. Or, if you will use less objects you can use SharedPreferences. On 10 Грд, 19:19, TreKing treking...@gmail.com wrote: On Fri, Dec 10, 2010 at 10:38 AM, Serdel adam.lichwierow...@gmail.comwrote: Does any one have any other solutions?

[android-developers] Re: How to control the width and height of Alert dialog.

2010-12-10 Thread viktor
Did you set layout after setting content view? It works for me, but I extend the Dialog. On 10 Грд, 14:39, sat sathvikm...@gmail.com wrote: AlertDialog.Builder builder = new AlertDialog.Builder(this);             builder.setTitle(Title);             builder.setItems(items, new

[android-developers] Free version of paid app

2010-12-10 Thread Viktor Linder
own package name? Any other technical considerations? All answers appreciated! Best regards, Viktor Linder -- 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: Android 2.3 SDK Emulator is very slow

2010-12-08 Thread viktor
Yes, with every coming sdk version the emulator becomes slower. On 7 Грд, 23:59, Alexei 'keyhell' Zhurba keyh...@keyhell.org wrote: Hello! I use Eclipse + ADT + Android SDK for development. Current configuration is Eclipse Helios SR1 20100917-0705  +  ADT 8.0.1.v201012062107-82219  +  

[android-developers] Re: Creating a PDF on Adroid?

2010-12-03 Thread viktor
I think you can use iText library. I used it on server side, it should works on Android too. On 3 Грд, 07:31, Zsolt Vasvari zvasv...@gmail.com wrote: Could somebody recommend a PDF creator library for Android, or at least in Java that could be ported to Android?  It doesn't have to be

[android-developers] Re: Android Grid problem

2010-12-01 Thread viktor
1) Parse XML with urls for your images; 2) Your implementation how you will be download images (caching on SD or 2 way caching, or direct uri for View) On 26 Лис, 06:38, chamith weerasinghe e05ch...@gmail.com wrote: hi all I'm very new to android. I need to get some Image urls from a xml file

[android-developers] Re: getting xml style as AttributeSet

2010-11-27 Thread viktor
Very interesting, did you try to add another view instead as setContentView(LinearLayout) and after add TextView to parent. Or it is because Attributes are null. On 27 Лис, 22:26, poohtbear eyaltg...@gmail.com wrote: I was suggested to try using the last parameter of the View's C'tor with my

[android-developers] CPU frequency scaling

2010-11-26 Thread viktor
Hi, Is it any way scaling cpu frequency in real time? -- 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-developers] Re: CPU frequency scaling

2010-11-26 Thread viktor
I mean If it is possible without remaking a ROM. On 26 Лис, 15:06, Alessandro Pellizzari a...@amiran.it wrote: Il Fri, 26 Nov 2010 03:31:13 -0800, viktor ha scritto: Is it any way scaling cpu frequency in real time? On most devices it is already enabled. Bye. -- You received

[android-developers] Re: CPU frequency scaling

2010-11-26 Thread viktor
Thanks Alessandro, I will try managing governor. On 26 Лис, 15:58, Alessandro Pellizzari a...@amiran.it wrote: Il Fri, 26 Nov 2010 05:50:32 -0800, viktor ha scritto: I mean If it is possible without remaking a ROM. On 26 Лис, 15:06, Alessandro Pellizzari a...@amiran.it wrote: Il Fri, 26

[android-developers] Re: How to change color of ListView child items on focus

2010-11-23 Thread viktor
Why did you use complex item layout? Use selector as TableLayout background. On 20 Лис, 21:18, Francesco nolano...@gmail.com wrote: Hi all. i have a list View in my app (this is the xml layout): ?xml version=1.0 encoding=utf-8? ListView

[android-developers] Re: java.lang.IllegalArgumentException: View not attached to window manager

2010-11-23 Thread viktor
You are dismissing dialog in a Runnable, thats why you have exception. Try do it in UI Thread, I mean obtain message and send it to Handler. On 20 Лис, 12:45, PaulJ pjablonsk...@gmail.com wrote: Hi there brainiacs, I'd like to ask about how to proper handle progressDialog in Thread, since

[android-developers] Re: How to change color of ListView child items on focus

2010-11-23 Thread viktor
it. On Nov 23, 4:23 pm, viktor victor.scherb...@gmail.com wrote: Why did you use complex item layout? Use selector as TableLayout background. On 20 Лис, 21:18, Francesco nolano...@gmail.com wrote: Hi all. i have a list View in my app (this is the xml layout): ?xml version

[android-developers] Re: Having trouble setting custom TitleView for a Dialog

2010-11-23 Thread viktor
You are on wrong way, you can inflate only layout (ViewGroup), but not child view, try to using View.inflate(activity, R.layout.how_to_play_dialog, null); On 23 Лис, 15:18, William Ferguson william.ferguson...@gmail.com wrote: I am trying to create a dialog with a custom title and content views

[android-developers] Re: Memory Leak with a ListView revisited

2010-11-23 Thread viktor
Why did you set setAdapter(this)? You implement ListAdapter for your ListView where getView(int position, View convertView, ViewGroup parent) it is already implemented. could you try without setAdapter. Example below, you make it in every place, it is not very nice. LinearLayout ll =

[android-developers] drawable resources is stored in RAM at startup?

2010-11-19 Thread viktor
Hi everyone, Drawable resource is set as background for second layouts (Second activity). My problem is, I get Drawable from resources end set color filter to that, than I set this drawable to layout (First activity). On second activity I don't set color filter but background remain the same.

[android-developers] Re: drawable resources is stored in RAM at startup?

2010-11-19 Thread viktor
). On Fri, Nov 19, 2010 at 6:39 AM, viktor victor.scherb...@gmail.com wrote: Hi everyone, Drawable resource is set as background for second layouts (Second activity). My problem is,  I get Drawable from resources end set color filter to that, than I set this drawable to layout (First activity

[android-developers] Re: How to wake up a thread with the TERMINATED state?

2010-11-18 Thread viktor
Could you try call Thread.run(). I did as you and works fine. This is my example: if(this.getState().equals(Thread.State.NEW)){ start(); } else if(this.getState().equals(Thread.State.TERMINATED)) { this.run(); } All operation I do in Thread class. On 17 Лис, 21:27, Kumar Bibek

[android-developers] Re: ConnectionPoolTimeoutException with DefaultHttpClient / ThreadSafeClientConnManager

2010-11-18 Thread viktor
You also can use next params: ConnPerRoute connPerRoute = new ConnPerRouteBean(CONNECTION_PER_ROUTE); ConnManagerParams.setMaxConnectionsPerRoute(params, connPerRoute); Where CONNECTION_PER_ROUTE is number of simultanious connections to the same host On 18 Лис, 01:13, ernestw

[android-developers] Re: How to manage severla bitrmap for a ListView avoiding OutOfMemory?

2010-11-17 Thread viktor
for the 2d problem, a list adapter works thus. for the 1t problem, yes, exactly, if you are using correct list adapter, after first initialization view object is repeat, reference to first bitmap will be reassigned. Thats why GC deallocate first bitmap, has no reference to that. On 17 Лис,

[android-developers] Re: Slow execution getThumbnail in HTC hero

2010-11-16 Thread viktor
You can try caching thumbs in RAM. Don't update your view every time if you are using List or something else scrolled. I had the same situation as your. When I start investigation, I sow that thumbs never create on a SDCARD (.thumbnails folder). Every time an app make new thumd and it is so

[android-developers] Re: Context menu for other views

2010-11-08 Thread viktor
Hi venu, you can set tag for every table row or directly for column. Into tag you can pass any information what you need like view id, row id. I cannot see how did you implement context menu calling but I suppose interface method params contain view object. On 8 Лис, 13:13, gvenugopal

  1   2   >