0
votes
1answer
23 views

Android, reset a value everyday

I am developing a timer app that works in block of times (pomodoros) and I'd like to have a variable that keeps track of the number of blocks passed everyday, so it keeps counting within the same day ...
0
votes
0answers
34 views

Android Handler reset

I use the following code and a handler to produce a beep sound after 5 seconds from when my device is totally flat (accelerometer x,y values). Then the sound reproduces every 5 seconds if the device ...
0
votes
0answers
77 views

How to solver error “Connection reset by peer” in Facebook API for Android?

Always when my network is running with low bandwidth network when i try to connect to Facebook API in Android SDK i get the error: connection reset by peer. I don't know which method in Facebook API ...
0
votes
1answer
26 views

Unknown string in Terminal

What does this mean, "android_358920041107720" and how do I get rid of this string when starting my Terminal? I believe it came from me downloading PhoneGap/Cordova, but not entirely sure. Any help ...
0
votes
0answers
46 views

Android Clear my keyboard

I have some keyboard : <?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/RelativeLayout1" ...
0
votes
0answers
226 views

Android Factory reset with reboot [closed]

Can any one help me out to find which one is the way to reset the device programmatically. ManiFest.xml <uses-permission android:name="android.permission.REBOOT" /> <uses-permission ...
0
votes
2answers
85 views

android alarmmanager reset

My application uses below code to set Alaram to execute service on "Daily" basis. AlarmManager alarmManager = (AlarmManager) ctx.getSystemService(Context.ALARM_SERVICE); Intent i = new ...
0
votes
1answer
30 views

Button resets when opening app via notification

I've created an application where you press "start logging" which starts a service that periodically logs data. The button changes to show "stop logging". You then minimize the application and allow ...
0
votes
2answers
157 views

SeekBar and CountDownTimer

i'm trying to use a SeekBar to control the speed of the CountDownTimer and i'm stopped in 2 issues. 1 - The DownTimerInterval doesn't reset when i change the seekbar progress...but add the progress ...
1
vote
1answer
102 views

android thread reset

my code is: public class EventDialog2 extends Dialog implements OnTouchListener{ TextView textv; Context con; Thread t; int flag=0; public EventDialog2(Context context, int ...
1
vote
1answer
199 views

CSS3 Transform: Rotate resets on complete on Droid 2

I am testing on the Motorola Droid 2. What happens is when my -webkit-transform:rotate(1650deg) completes, the image returns to the original position at 0deg. Is there a way to stop this from ...
0
votes
1answer
97 views

Why the values are unable to set on edittexts in the onConfigurationChanged()?

There are two different xml files in layout and layout-land for the respective modes. As I want to set the values back in the edittexts even when orientation changed, I am using ...
1
vote
0answers
104 views

Android AppWidget Wierd Behavior

I have created a widget that retrieves html raw data and parses it out. The data is displayed to the widget correctly but when i launch the config activity of the widget and exit back out, the widget ...
0
votes
1answer
361 views

Android: reset all the SharedPreferences used by application to defaults

In my app, preferences are organized by SharedPreferences. I need to perform reset to application defaults. I know how to reset all values for particular SharedPreferences: SharedPreferences prefs = ...
0
votes
2answers
224 views

Recover an object on screen orientation change

In my code I created a card class; I show a bunch of cards later in a gridview. On screen orientation change I am loosing all the cards; with my previous question I was pointed in the right ...
0
votes
2answers
281 views

Reset timer if a new timer is started

See the app has two buttons. One starts a thirty second timer and the other a sixty second timer. There are no problems starting the timer. The problem is, say I've clicked the 60 second button and ...
2
votes
1answer
391 views

Path.reset vs Path.rewind

In android what is the difference between path.reset() and path.rewind() ? The docs say that public void reset () Clear any lines and curves from the path, making it empty. This does NOT ...
0
votes
0answers
70 views

Android imageButton reset

I have an app in which I need to use ImageButtons.The app has tabs, and when I click on a tab the ImageButton should be calling setBackgroundResource(), and when I click on another tab the imageButton ...
0
votes
0answers
67 views

How can I encode long-form mp3 files so that they do not stop and reset at random positions in the audio?

I have this situation where mp3's I encode with iTunes, FFmpeg, or LAME all have a problem where if you stream them to an Android device, they will almost always stop playing at about the 15-25 minute ...
2
votes
2answers
257 views

Android activity-reset after picture taken (orientation?)

Well basically, I press a button, this opens up your default camera app by using the camera intent. After a picture is taken, it will save the things needed and redirect to another activity. In this ...
10
votes
1answer
25k views

Wipe data/Factory reset through ADB [closed]

Basically this is my problem/ I have 200+ phones running stock Android that need to be wiped (in the Wipe Data/Factory Reset way) and then a new ROM installed with some additional apks. Currently ...
1
vote
0answers
62 views

How to reset notifyAuthFailure flag on Android device (android.accounts.AccountManager)

I am developping an Android app and I would like to reset the notifyAuthFailure flag on my device so that I am prompted again by my device. I have the following method call: ...
0
votes
1answer
384 views

Resetting a spinner after removing values

I am trying to repopulate a Spinner after values have been removed. Currently the app sets up a Spinner with a list of string values and then as the app is used some of these values are removed from ...
0
votes
1answer
924 views

Android MyView (FingerPaint Demo) Reset Canvas

I have used the MyView class from the FingerPaint API DEMO (from Here) and would like to be able to clear the view of any drawn lines. In effect resetting it to when it as first rendered on the start ...
0
votes
1answer
630 views

Android how to reset canvas/bitmap to capture a new image

I am working on an application in which i need to save table data as an image when the user clicks on a button. To do so I used the following code: //save is the button to click ...
-2
votes
1answer
116 views

integer in java (android) is setting it self to 0 [closed]

amnt = Integer.parseInt(ammountedit.getText().toString()); if (amnt >= 1){ if (amnt > crates){ amnt = crates; } ...
0
votes
1answer
914 views

Android- im trying to reset my timer every time a button is clicked, and when not clicked for 5 secs ,need it to go back to original page(activity)

COde so far : i dont no if i should be using threads or what kind of timer -_-- clicker.setOnClickListener(new View.OnClickListener() { public void onClick(View v) { counter++; ...
1
vote
1answer
549 views

Reset EditText's background after custom background

How can I reset the default background of an EditText widget after giving it a custom colour?
1
vote
2answers
293 views

Android reset app functionality

Is there any way I can implement functionality which will clear all my data/files/shared_preferences/database in my application. I need functionality like Clear Data button in Android App Settings. ...
0
votes
1answer
111 views

starting a new activity…however only want its asynctask called only once

I have two activities Menu (Activiy) Contents: Button1 ----> When this is pressed (a new intent is created and shows up Submenu), Button2, and Button3 Submenu (Activity) Contents: Contains an ...
1
vote
1answer
863 views

Connection reset from TCP socket in an android service

I am using a thread launched from android local Service,after I let my phone goes to sleep mode,then reuse it later after a while I get connection reset in my server side. I am looking why it happens ...
6
votes
2answers
1k views

Prevent Android Reset

We do short-term rentals on cell phones and tablets. You need a tablet for a week, you can come to us and we rent it too you. What happens, is at the end of the week (or weeks) you need to return ...
-1
votes
2answers
543 views

How to reset android by program?

How to reset android phone to original status by program? or Can we use adb to trigger sth? Many thanks for replying~
2
votes
0answers
422 views

Android Slide Animation Flashing

I am trying to animate an ImageButton. When the button is clicked, I want it to slide to the right. When it's clicked again, it should slide back to its original position. When the animation ends it ...
0
votes
0answers
498 views

Missing Apps after restored from factory reset on HTC Evo 4G [closed]

I've seen some similar issues, but nothing quite the same as what I am having. Hopefully that means it is easy to fix. So, I recently backed up all my apps to my sd card using MyBackup and then ...
0
votes
2answers
2k views

How to reset EditText after an action has been completed?

I would like to reset my EditText back to an empty "space" or a "hint" after a button has pressed that would have completed an activity with input from the EditText field. My adventure with android ...
0
votes
6answers
638 views

variables retaining values after app close

My app is retaining all of the variable values when it closes and this is effecting how it runs when reopened. Is there any way to reset them all upon app close? or is there a way to clean the app ...
1
vote
1answer
287 views

How to update internal values of a PreferenceActivity when SharedPreferences change

I use a Preference in a PreferenceActivity to load default values: when this specific Preference is clicked, something like this happens: private String mResetKeys = "key1,key2,key3"; ...
0
votes
1answer
408 views

App starts after phone reset

I've seen that some apps only start working after a phone reset. Usually are apps that will run silent on the phone. The first time they run they'll ask for some info or prefs. How does those guys do ...
0
votes
3answers
806 views

static variable is being reset for unknown reason

I have a class called 'DataReference' which has a number of static variables which are accessed by various classes throughout program execution. I have one variable 'public static int particlePercent ...
0
votes
2answers
616 views

Spinners in List View

I'm working on an app to identify trees. Therefore, I let the user answer questions about given characteristics, by choosing the appropriate characteristic out of a spinner. Because a tree has many ...
0
votes
1answer
450 views

Android:Animated menu not dissappearing

I am dealing with a view flipper. I have 2 views in my view flipper and in the second view on completing a frame animation an animated popup menu translating from bottom. when I press the back button ...
0
votes
2answers
4k views

Android: Bluetooth - can't establish connection, IOException “Connection reset by peer”

I'd be very grateful if someone could help me. I'm trying to connect to some custom bluetooth hardware a client has provided me. I've followed the API docs religiously and am using the following code ...
1
vote
1answer
465 views

reset screen timeout in android

I'm using the following code to wake the phone's screen: PowerManager pm = (PowerManager) getSystemService(Context.POWER_SERVICE); wl = pm.newWakeLock(PowerManager.FULL_WAKE_LOCK | ...
1
vote
0answers
312 views

textView.post resets TextView marquee behavior Android

I am showing a some text on my loading screen. I have set TextView properties to make is scroll text but I also have another TextView that shows the current item being loading. when I do ...
0
votes
1answer
808 views

Android, simply view question about view reset

I have a button in my activity, when you click the button an if statement is ran against its text label; if(BTN_1.getText()=="firsttext"){ //do some stuff, then... ...
0
votes
1answer
2k views

reseting a ListView after the adapter's data was changed

I have a list view that can display items based on internal state (it has items, and 'viewed' items). i need to be able to toggle between the two states, i do that using a simple button that change ...
1
vote
1answer
173 views

Android - Slider devices cause Activities to reset

While testing on Android 1.6 using a G1 I have noticed that when I slide out the keyboard it kills the activity and recreates it even though I have set my activity to only display in portrait mode. ...
2
votes
4answers
3k views

How to boot android phone programmatically?

I want to reboot targeted phone by SMS. Is it possible? How can we implement this?