0
votes
1answer
22 views

android:state_enabled=“false” doesnt work

This is my selector: <?xml version="1.0" encoding="utf-8"?> <selector xmlns:android="http://schemas.android.com/apk/res/android"> <item ...
0
votes
1answer
18 views

View state at fragment on backstack with retaininstance = true

I have got loader in fragment and it loads data on background. After data are loaded, I fill edittexts with that informations. Problem is that if user changes something in edittexts and rotate screen, ...
0
votes
1answer
29 views

Android: Maintaining Global Application State

Android documentation for Application states: There is normally no need to subclass Application. In most situations, static singletons can provide the same functionality [i.e. maintain global ...
0
votes
1answer
35 views

Gstreamer Android changing pipeline state issue

I am working at a player based on gstreamer tutorials. For this I created a pipeline using: pipeline = gst_pipeline_new("audio-player"); //adding also 3 gstreamer elements appsrc = ...
0
votes
0answers
12 views

First ImageView from Grid is not visible

I'm facing a very strange problem. I've read a lot of things about grids but I haven't been able to resolve my problem. I have a Grid which contains only an ImageView for each item. I load two images ...
1
vote
0answers
23 views

How to save&load a snapshot of an Android app state?

Before reading this, note that I'm not talking about capturing the screen. Motivation Many times, in order to test apps, we need to go over many activities (including a loading/splash screen) till ...
1
vote
1answer
40 views

Android setOnClickListener disables state color change in ListView

I have a simple ListView, and by default when I press on list item its background changes to some color. But when I assign each list item view .setOnClickListener(...) it stops doing that. Could you ...
0
votes
3answers
70 views

How to NOT save view state in Android?

I am developing app, where I need to display suggestions in ListView and when orientation changed I want that list to be hidden. But it appears on the screen anyway. I tried this: 1) Get list adapter ...
0
votes
1answer
42 views

android restore state of edittext after returning to the activity

I am beginner to android developing and I am dealing with a probably simply solvable problem. I have a Main activity which is a menu and the user can click on of the items on menu. Then a new Activity ...
0
votes
1answer
56 views

Android: Use TelephonyManager or AudioManager for checking phone state before executing code

My question is, what is the best way to get the phone state (is it in call mode), to decide the further way. I would like to check for phone state before deciding whether execute sound notification or ...
-1
votes
3answers
48 views

How do I save the state of my activity

How do I save the way my Activity is so when closed with the back button and resumed it will be the same way it was when closed. this is my Activity code: public class Levels extends Activity{ ...
0
votes
0answers
106 views

retain instance state of child fragments and actionbar spinner

I use child Fragments in my application, but since I can't call setRetainInstanceState(true) on them, how can I restore the instance state? My specific case: I have a Activity with a Fragment in ...
0
votes
1answer
169 views

how to save state of dynamically created checkbox in android

i am creating number of check boxes dynamically and i have done some logic to select only one at a time . now i just want to save the state of the selected checkbox and when i come back from the next ...
0
votes
1answer
91 views

How get phone state or sms state?

Hello all i will explain my question a little more. I'm not native english speaker. So maybe my question is on the internet but when i search i only found something i already know. I have a Xperia U ...
0
votes
0answers
125 views

How to Get Proper Position in viewholder In android

I've created a downloading App, and i have a listview in an added custom row. The row has three items - one image view, a progressbar and 2 buttons. There is one button for download and another for ...
2
votes
1answer
154 views

Android Keep state of selected elements when data are changing in ListView

First of all, thank you for reading my post and sorry for my bad English. I have an activity with a list of Products (like a shopping list), in which we can choose the number of product units. The ...
1
vote
2answers
156 views

Make buttons remain pressed in Android SDK [duplicate]

I have 5 simple buttons and I want them to behave like radio buttons, but without the tick box (or whatever they call them). They are aligned in row and I want only one of them to be selected at once, ...
0
votes
3answers
37 views

Can i somehow retrieve the visibility-state of my view?

After setting the myView to invisible: public void onClick(View arg0) { myView.setVisibility(View.INVISIBLE); } can i somehow ask the current state of myView's visibility via some built-in-method? ...
0
votes
1answer
56 views

Saving State of MainActivity when opening Settings/About

I have some SeekBars, a Switch and CheckBox on my MainActivity when I open the settings from the menu with: Intent settings = new Intent(this, SettingsActivity.class); startActivity(settings); return ...
0
votes
0answers
102 views

Android CheckBox state is successfully reinstated after pressing back button, but not after pressing home button

If I press the back button to leave the activity and then return to it, the state of the checkboxes are reinstated in the onResume() method. When I press the home button, or if I lock the phone while ...
0
votes
0answers
60 views

Capturing onTouch event in a checkbox

How can I implement something like onTouchChangeListener instead of onCheckedChangelistener in a CheckBox? I want my check boxes to be selected only by ActionDown. Does anybody know any example for ...
0
votes
1answer
140 views

android - data stored in onPause, onStop or onSaveInstanceState

I have a confusion regarding what should go in onPause,onStop and onSaveInstanceState. For example, the Android docs say that For onPause - Commit unsaved changes, but only if users expect such ...
0
votes
1answer
36 views

Whats the LifeTime of Application class?how long will it persist the object

i have a Object obj where i need to save the state of this object for long time, so if i extend application class what is the Lifetime of it? When the user in the current activity and gets a call, ...
0
votes
1answer
150 views

How to remove the Default orange Highlight Effect for EditText programmatically?

I use selector for styling EditTexts. I want to get rid of orange color, when I doubleTap on my EditText. I use this: states.addState(new int[] {R.attr.textColorHighlight}, ...
0
votes
0answers
45 views

How to listen Motion events and return their value to the thread

I want to know how can I return state of events from onTouch the button to my thread. In code I use: gameview.java (here I "listen" for specific actions from buttons): public boolean onTouch(View v, ...
1
vote
2answers
106 views

How to save variables with SharedPreferences

I have my own Objects which I need to store for later use. The User saves this object, it is turned into a JSON String, then when the User is connected to a network, the JSON String is turned back ...
0
votes
0answers
62 views

Android: how to bind buttons?

Hi im learning android and im basing on on app that can be found: LINK The question is... how can I bind own buttons that can control the bats? In GameState.java I defined an example button: ...
0
votes
1answer
440 views

Android different EditText backgrounds for different states using shapes, selector or list

I'm starting a new app where I use ActionBarSherlock & HoloEverywhereLib. My min & target SDK are the same (10/2.3.3). This is just so I can also quickly port it to Amazon Kindle & BB10 ...
0
votes
0answers
199 views

Updated Fragment view state lost when using setRetainInstance(true)

I am trying to save fragment state. I have an activity and several fragments. The sequence of actions: add first fragment, change view manually (make visibility of first LinearLayout GONE and second ...
5
votes
2answers
144 views

Android UI Update Thread - saving and restoring it

How do I properly do that? I have a stopwatch and I'm saving it's state in onSaveInstance and restoring it's state in onRestoreInstance... Now I've following problem: if I stop the thread in ...
1
vote
1answer
213 views

Android - In the event of outgoing calls, are being throws automatically the state of OFF_HOOK

In the event of outgoing calls, are being throws automatically the state of OFF HOOK Hi guys, firstly my apologies for my english. Well, in my application I'm monitoring every call, before and after. ...
0
votes
0answers
26 views

Determine active caller without monitoring state change events

I have an application that needs to determine the phone number of an ongoing call. I have seen examples of using the ACTION_PHONE_STATE_CHANGED broadcast intent to get the calling phone number at the ...
5
votes
1answer
297 views

How to properly implement onRestoreInstanceState() for a DialogPreference subclass?

I am implementing my own custom DialogPreference subclass that has a SeekBar used for persisting an integer. I'm a little confused about what needs to go into onSaveInstanceState() and ...
0
votes
2answers
54 views

Activity stack state

I'm currently adding the option to start my app from another app. The app will look and behave differently when started from another app. The entry point activity is passed a different intent action ...
2
votes
1answer
157 views

Restoring webview state that contains dynamically generated HTML

I have a WebView in my application that loads dynamic content, and I want the view to persist on device rotations. So I wrote the following lines of code: @Override public void ...
0
votes
2answers
1k views

Saving Fragment State on Orientation Change

I'm creating a file manager app for Android, and two classes below are the majority of the logic that goes into doing that. What I'm doing is that on startup of the ContentList, it adds the ...
5
votes
1answer
64 views

Can anyone help me understand threading for my program?

I asked for help from you guys on a program, and it seems it will work. if I can get threading/asynctask to work. I tried to work on threading already and I didn't get it to work. The reason why I am ...
1
vote
1answer
110 views

How to awake the Wifi or 3G of an Android device by app?

I'm developing a server websocket based application for Android but usually doesn't works correctly. When it fails and I try to ping the device from my PC, I can't access it. I must reset the device ...
0
votes
2answers
79 views

Unable to pause when trying to save EditText

Hi people of Stack...... I am trying to get my app to save the text with the EditText box so that when the user closes the app and re-opens it there entry fields stay saved, but I am getting an NPE ...
0
votes
1answer
202 views

android Read Phone State

I need help with app(or service?) basically I was just fooling around, and decided to see if I can make my app send an email if it detects my phone is ringing. (I know it seems stupid but its more of ...
1
vote
3answers
297 views

Saving a “CHECK” checkbox state on starting app

Hi I got a problem with "saving status of my checkbox". In my case: check status- enables sounds, uncheck status - disables them. On my options.xml I got set up: <CheckBox ...
0
votes
1answer
100 views

How to properly and reliably save fragment state (custom classes)

how can i properly save fragment state, so that its 100% reliable? My problem is, when i take picture in my fragment, it causes my app to be killed and recreated. State of my fragment is lost. I ...
0
votes
2answers
73 views

Unable to Retain Values of Views in Expandable ListView

I have Expandable Listview having Different views Like EditText, CheckBox, DateTime Picker etc. Now the issue is that while scrolling the List or collapsing the group, all the values get lost. Please ...
0
votes
1answer
66 views

“State.CONNECTED”: CONNECTED cannot be resolved or is not a field

I want to check if my Android app is connected to the Internet. I copied the code I read in a book, here it is: ConnectivityManager cm = (ConnectivityManager) getSystemService(CONNECTIVITY_SERVICE); ...
0
votes
1answer
153 views

ImageButton background change with custom drawable state

I have a custom ImageButton class mimicing the ToggleButton's checked state based on this tutorial Android: how to add a custom button state . Everything works fine, when I have a state list drawable ...
1
vote
1answer
128 views

Unwanted onItemSelected calls after restoring application state

Hi, I've got some Spinner objects that, when selected, change the contents of an EditText and a Button. All is working fine until I toggle the screen on and off. I made the application orientation ...
1
vote
2answers
323 views

How to check if phone is on idle or if phone gets out of the idle state?

I have a class that extends the BroadcastReciever and another that extends the AsyncTask I wanted it so that when it receives an sms it would fire up a timer using the 'AsyncTask-extended' class. ...
1
vote
0answers
206 views

Android network connectivity states missing.

I'm trying to assess my phones ability to connect to my wifi network. I want to figure out how long it takes to authenticate to my wifi access point, how long it is taking to obtain an IP address, ...
1
vote
0answers
143 views

android retain activity or save its state

I've got unity3d and vuforia app ported to Eclipse. I have one starting activity and one extended activity which does extend vuforia activity and is set up as MAIN activity in manifest. I've got some ...
1
vote
2answers
486 views

After pressing home button saving the state of Activity

I have two activities, Activity1 and Activity2. Activity1 is launcher activity which starts at the beginning. Now when I'm pressing Home button from activity2 and again opening the app from all apps ...

1 2 3 4 5