General :: Want 10 Second Camera Delay App
Mar 19, 2013Any App to make the camera delay 10 second?
View 4 RepliesAny App to make the camera delay 10 second?
View 4 RepliesGB had this great ability to delay the phone from requiring a PIN under an Exchange policy for up to 15 minutes.
I can't find this anywhere in ICS.
-EVO 4G CM9
I would like to extend from 10 minutes, the standard maximum possibility on Ics for lock the screen. Do you know if it is possible? I was supposing it was some parameter on the system.
View 3 Replies View RelatedI turn back on my phone, I have to wait a few minutes before placing a phone call. just wondering if it's my phone, CM7 bug, or just an Android limitation?
View 1 Replies View RelatedI'm having some boot delay in my Galaxy Ace. It runs 2.3.4 gingerbread and takes 1 minute to boot up ! When i bought it, it was very fast indeed, arround 20~40 seconds to boot.
My boot starts with the Samsung words, then an android animation comes, it ends, then something writed Google in the screen and bellow it has the loading circle, the same when you're waiting a video on YouTube.
I can do something to speed it up ?
I use a BT A2DP headset with route planners Sygic and Navigon running on a HTC Flyer tablet with Android HC. With every spoken instruction the first 2~3 seconds are lost because of some delay when audio is started. I know for sure that this delay is not in the headset.
View 1 Replies View RelatedI notice a slight delay opening Contacts (3+ seconds) and Dialer (1+ seconds) in my Note 3.
This happens when opening them for the first time. After they've been opened once, opening them the second time is instant.
However, this happens again after I clear all the running apps and opening the Contacts and Dialer again (I clear them using the stock task manager, press and hold Home button).
I'm not sure if it happens right after unboxing (I didn't really pay attention to this at the time).But it could also happen after I turn off and uninstall updates on some of the bloatwares,or after I install the update to the bug in Keyboard from Samsung, though I'm not sure.
Specs:
-Note 3 Exynos, Stock Samsung (no firmware update yet)
-No New apps installed at all, just some updates to the bloatware and Keyboard Update from Samsung
-800+ contacts, all google and synced together with gmail
-The 3 settings in Development Mode (The animator, transition etc) are set to OFF
-S Voice is removed from the Home Button
Running into another issue regarding my S4 here. Before the 4x2 clock widget I had would always be in sync to that of my carrier's time. Now, when I scroll around my phone or go back to check the time or even after unlocking my device, the widget is a good minute or two behind of my actual provider's time. It takes itself about 30 seconds to correct itself, I was just curious if there is anything I can do to fix this issue?
View 2 Replies View RelatedI installed kasty-cube_u30gt_h-41-01 on my cube u30gt but find that there is a slight delay between the units sound output and the sound coming from the TV, is this normal? or is it just my ears echoing All else seems fine.
View 1 Replies View Relatedi focus my eyes on /sys/class/leds/button-backlight/, however, i can just turn off the backlight.
i found that the trigger in it can do complex work, so i tested it, and found some codes below
Code:
[none] rfkill0 mmc0 mmc1 mmc2 timer heartbeat sleep rfkill1 rfkill2 max8903a-usb-online max8903a-ac-online battery-charging-or-full battery-charging battery-full battery-charging-blink-full-solid
however, i haven't found the one i want.
1) when press the home or power button to screen on, it is quite delay?
2) when I want to end called, I must press power button, the phone screen only light on, then must double tap to unlock screen, only can press the end button to end call. Is there got any easy way like other phone? Like the phone can auto light on when take away from ear?
3) I have using the software update to update, but still the same, just want to check DXLG1 and DDLI1, which is more latest? DDLI1 is belong to which country firmware?
My camera stopped working. When I click my camera application I get the message "The application camera (process com.android.camera) has stopped unexpectedly. Please try again". It's just a blank screen?
View 3 Replies View RelatedI am writing a application which will write to a file. Now I want to show the contents of the file but How do I delay the show function so that there is enough time for the writing to be done before continuing?
View 2 Replies View RelatedI noticed this before 2.2 Froyo update, but it seems to be worse now. Whenever I head to the market to install an app, I will click the "install button" and then click "okay" and it states that my app will be downloaded. However, the progress bar will remain at "initiating download" or something of sort and can take anywhere from 30 seconds to 5 minutes to download and install. Is anyone else receiving this lag with the market, or does anyone know a fix?
View 5 Replies View RelatedI have had my desire since friday and have had no problems with it at all, in fact it is my favorite phone.
However today the incoming sms messages i was receiving were being delayed by almost two hours and it has happened several times throughout the day.I am on the orange network and the coverage in my area is excellent.
Any help would be appreciated.
It seems that this question has been asked before, I just would like to know whether there is an update in Android.I plan to write an audio application involving low delay audio I/O (appr. < 10 ms). It seems not to be possible based on the methods proposed by the SDK, hence is there - in the meantime - a way to achieve this goal using the NDK?
View 1 Replies View RelatedJust wondering if it is possible to change the delay on the keyboard? More specifically...how can i shorten the delay before the symbols pop up after holding on to a letter for some time?
View 1 Replies View RelatedI am using WebView in a number of screens in my application, and notice that it takes couple of seconds when starting up for the first time. What can I do to speed it up besides trying to create one in a separate thread beforehand?
View 3 Replies View RelatedSo I'm listening to my music on the Droid and notice that the songs have a varying delay between them. Sometimes its not very noticeable and other times it's almost a full second delay before the next song plays. I was wondering, what causes this? Is it the phone itself or does it have to do with the song files? On my computer there is never a delay, each song plays continuously one immediately after the other.
View 4 Replies View RelatedHas anybody noticed download delays while trying to update an application? Sometimes it takes minutes or longer for a download to start so that an application can be updated...
View 4 Replies View RelatedI am new to android development, also new to java. I have many years of experience with OO PHP, so it's not hard for me to quickly learn Java and Android, but I still don't know many things like Thread class. I just started developing a simple app. What I want to do is that when a button is clicked, then the TextView is update in this way: the background is changed to black (by default it's set to white) Then it should wait a half a second and then set the background back to white and update the text inside the TextView
Here is my code, it's inside my Activity class:
public synchronized void onClick(View v) { // TODO Auto-generated method stub switch (v.getId()) { case R.id.btnPlay: showNewDraw(); break; } protected void showNewDraw() { textResult.setBackgroundColor(Color.BLACK); textResult.setText("Before sleep"); try { Thread.sleep(500); } catch (Exception e) { textResult.setText("Something wrong"); } textResult.setBackgroundColor(Color.WHITE); textResult.setText("After sleep"); }
The way it works now is that it seems to actually take 1/2 second from the time the button is pressed and text is updated, but the background is not reset to black and back to white - it always stays white. Either it is being set to black and instantly reset to white or it's just never set to black. What should I do in order for the "delay" effect to work?
You know when you turn off the screen. The slide down to unlock feature, there's NO way to set a delay for this to come on? What I would like would be to remove that slide down to unlock feature and just have the pattern lock on (with a delay option). But i hate having the slide down to unlock, and then unlock again with a pattern. No way to 1) delay the slide to unlock feature or 2)remove the slide to unlock and only have the pattern lock working?(with a delay feature if possible,say only show up after 2hours has passed) My windows mobile phone had this simple option built in.
View 12 Replies View RelatedI need to let service sleep for 0.5 sec just as using Thread.sleep(); is there any method??
View 1 Replies View RelatedI want to make a dummy progress dialog appear for 2 or 3 seconds. It won't actually do anything other than say detecting.
I have the code:
CODE:................
But what do I put in between the show, and the dismissal to have the dialog appear for a few seconds?
I am having a hugely annoying issue with delays using HTTPClient and post the first time I call execute on the client the response takes 5 seconds to come back. Subsequent calls take around 100 to 200 ms. I am using the Apache client so does anyone know why this takes so long? The client setup looks like below
CODE:.........
The timing for this look like below.
CODE:......................
I'm in a process of creating a memory game. My problem is that whenever i click for the second time, i can't even see toggled button. To be clear - first click toggles the togglebutton, so i can see the number it holds, the second click on a different togglebutton is suposed to toggle it, show me the number and then proceed to either set a score +1 if numbers are the same, or reverse them back again if they're different.
Below is the code that i use as my onClick function, i've been thinking about putting some kind of sleep or delay function somwhere in the second "if block" - (if(klikniecia ==2)).
CODE:...........
I think, about setting a delay here, so i can see both of the cards, regardles if the're the same or not before reverting them.
CODE:...................................
Does anyone also have this issue. When I turn the phone on, tap the messaging button, and then tap on a text message conversation that I want to see and reply to, there is a 6-8 second delay in for it to open. The screen goes dim and it says loading. Anyone else have this issue?
View 3 Replies View RelatedI am using a menu in my application Same as this post... I am using a gallery view for display my menu items
Text Gallery on Android?
Problem is that, i implement onItemSelected listener for gallery, so that when new item is selected data related to that topic loaded. But i also want to allow user to scroll the gallery fully. but each time when user move to next item onItemSelected() function called and it start loading data.
All i want to do is to put some delay in onItemSelected() function, so that if in between that delay user scroll next item than there is no need to load data of previous but for the current. Time may be 1 second. If user dose not go for next item in 1 second, that data of that item must be loaded.
I thought to start a thread,but each time for onItemSelected() there will be new thread...
I try this to.
CODE:............
But Fond Exception.
CODE:.............................
Is it possible to set a delay at which the scroll bar at the right side appears? The idea is that when the user begins to scroll, the scroll bar does not show up immediately, but if the user scrolls long enough.
I was looking for some time now and found just a getter method getScrollDefaultDelay (), which gets the time in ms when the scroll bar dissapears. How could I control the delay in my case?
I have my own BroadcastReceiver instance for Intent.ACTION_HEADSET_PLUG action.
There is about 1-2 seconds delay between actual physical unplugging a headset and a moment when my BroadcastReceiver is notified about that.
CODE:........................
How to decrease the delay?