Android :: Activity Block User Interactions
Apr 26, 2010How can I temporarily block all user interactions with the views of an activity ?(Other than calling the setEnabled method on each view)
View 2 RepliesHow can I temporarily block all user interactions with the views of an activity ?(Other than calling the setEnabled method on each view)
View 2 RepliesI want to make an app like self control for study. Is there any way to do this?? this app blocks the user from accessing certain apps.
View 4 Replies View RelatedI've seen with the onscreen keypad, the application does not seem to be notified that the OSK has been brought in front of it.I would like to be able to change the layout of my screen so that relevant information is visible when the keypad is brought to the fore.I have information onscreen that changes as the user types in a number.Also, the implementation of the OSK in landscape mode completely breaks the functionality of our application since the OSK takes over the complete screen. It would be much better for us if a 12-key numeric keyboard were available on one side of the screen and leave the other side available to the application. Can there be layout qualifiers such as we have with layout-land- keyshidden...such as layout-land-osk?
View 2 Replies View RelatedI need to block (no input, no go on) the execution of an Activity until I have the GPS coordinate. How can I do?
View 1 Replies View RelatedI have an application that must create a database and if that fails, then no sense moving forward. I've built an AlertDialog and show() it but it never displays. The logic falls through and then barfs because of the missing database.What is the right/best way to throw up a message and halt the activity? The code below executes fine (meaning the show() occurs while debugging and it falls to the next line) but the UI never displays this alert.BTW I realize the throw might not be the most graceful but I'm not even getting that far so.
View 2 Replies View RelatedHow can I disable the keyguard when a broadcast receiver is activated by screen_on, so that when it occurs the user sees an activity that I have started behind it?(The activity is running already)I have been trying the following code from a broadcast receiver triggered by screen off.It doesn't seem to be working though as it is. When I turn the screen on, I still have to manually unlock the keyguard on the phone to reveal the activity behind it.
View 1 Replies View RelatedCan you please tell me how can my activity detect user pressing HOME key?
View 2 Replies View RelatedIs there a way to reprompt the user to choose a default activity for an intent? For example, user selects his default home apk and I want him to reconsider his choice once again. I know how to do that on 2.1 and before, but is there a way to do that now on 2.2? Famous Home Switcher, which did similar thing, does not work on 2.2 anymore thanks to google team.
View 1 Replies View RelatedI want to call another activity when the user clicks an hyperlink. Can anybody suggest me how to use Intent in this case?
View 6 Replies View RelatedI would like to launch an intent when any of my activity is visible, otherwise I will put it up as a notification, and will be fired by the user. To decide this, I need to know if any of my activity is front-most, how do I that?
View 3 Replies View RelatedI'm trying to implement similar behavior as the native phone app. When a User is in the applications menu/drawer (place that lists all applications) and receives and incoming call, after the call has ended the User is returned to the Android Homescreen. How do I redirect activity to the android homescreen like the phone app for that specific case.
View 2 Replies View RelatedI was wondering if anyone understood how to make your application be displayed when you unlock the screen. I have an application where the user turns on a Bluetooth device, it connects to the phone, and the user should be presented with a UI. Having them hunt for the app or using the notification menu is not a workable option (too much work and not the obvious behavior).
The problem is that:
When the screen is unlocked:
- you can popup the activity from the background service when Bluetooth connects to a device
- User is happy because the UI is right there
When the screen is locked:
- The application gets started but is destroyed
- User unlocks the phone and nothing is there but the homescreen
One work around would be to disable the keyguard when the application gets woken up but the nuclear option is a pretty bad option. I know the standard Android assumption is that you shouldn't do this. In the normal case this behavior is fine, but in this case I explicitly did something I want the phone to respond without adding more work for the user to do. As per Google's guidelines if you don't like this behavior there can be an option for you to turn this off or you can not use the application.
A few more details, so after looking at this a bit more the problem isn't necessarily that you can't have an activity running when the screen is locked, unlock and expect it to be waiting. That does work if you do something like the following: lock your device run an app through Eclipse while the phone is locked/off unlock and it will be waiting for you.
But in the case the Activity is already running and I'm brining up a new window (which happens to be a transparent one, saying you're connected and asking what they want to do).
The problem is that it gets killed
CODE:..................
The setup here is as follows:
MyBackgroundService is a serivce that handles Bluetooth state (waits for connections, turns on Bluetooth if the user starts the app, etc.). It triggers a popup BackgroundPOPUP activity that runs a ViewFlipper.
MyBackgroundService starts BackgroundPOPUP through an intent.
BackgroundPOPUP is an activity with a Translucent theme (Theme.Translucent to be precise), it shows a ViewFlipper with some instructions and presents some options.
Here is my code. I'd like to pass a boolean to the activity i want to start.code...
View 1 Replies View RelatedI am creating an alternative keyboard. In order to help users understand how to set up the IME after it is installed I have added a simple Main Activity that appears in the Application Launcher with set up and usage instructions. I also have a preferences Activity and I want the user to have an option to hide or show the setup instructions Activity if they don't want to see it any more. My question is how best I can do this? I am assuming if it is possible it would require overriding the IntentFilter for the setup instruction Activity. I have experimented with this and read through the Intents and IntentFilter documentation but I can't see how to do this.
View 2 Replies View RelatedI understand that trying to capture home button clicks is a hack, but I need to atleast close my current activity when the user clicks on home button. Is there anyway I can tell the system to close this activity is the user clicks on home button? If so how can I do that? I need to do it as I am listening for location updates and I want to stop the updates and also need to trash any location that was available to me previously. I need to do this just in case any user while in that activity clicks on home button and changes the location settings.
View 7 Replies View RelatedMy MAIN activity is spawning a child activity that contains a ListView. While this ListView is being populated (through an AsyncTask), an indeterminate progress bar is shown.However, assuming that I am an impatient user and I press the BACK button, the progress bar is cancelled but I am left with a blank screen. I have to press BACK one more time to go back to the MAIN activity.I would like the app to go back directly to the MAIN activity by pressing BACK only once. Can somebody point me in the right direction? I am thinking I should call finish() somewhere but I don't know where to put it.
View 3 Replies View RelatedIs there a way to retrieve Browser's user-agent without having a WebView in activity?
I know it is possible to get it via WebView:
WebView view = (WebView) findViewById(R.id.someview);
String ua = view.getSettings().getUserAgentString() ;
But in my case I don't have/need a webview object and I don't want to create it just for retrieving user-agent string.
I define a class Rect and a aidl file as below. code...
View 2 Replies View RelatedI have various activitys on my app. I have a configuration Activity, and i want to put a cancel button, that, when user press this button, the configuration window get's closed and turn back into the previous activity.i search in google and i find something about calling cancel or dismiss functions, but i can't call them cause this is not a dialog, it's an activity
View 1 Replies View RelatedI have Two activities One splash screen, Player screen. When user clicks on my app icon first splash screen is displayed and then player screen When player activity is running, if user returns to the home screen and then again clicks on app icon, the application is starting from the splash screen again.can any one please help me out how to do any one of below
1) I need to close current running activity and reload application.or
2) I need to resume to the player screen directly.Please give me an example or reference to follow, Im beginner in android programing.
When I currently have my activity on the font of the screen, how can I make Android to 'destory' my activity when user clicks 'back' button? (i.e. onDestory of my Activity gets called)?
View 4 Replies View RelatedI have an application with 2 activities, LogonAct and MainAct. LogonAct is a logon activity which I want to force the user to go through each time they return to the application. I've set android:clearTaskOnLaunch="true" on LogonAct.
View 1 Replies View RelatedI have an Activity with a list that is bound to a ListAdapter reading data into a ArrayList from a database. All is well when the data is first loaded. While the Activity is open and the list is being displayed it is possible and likely that the data in the database will be updated by a service but the list does not reflect the changes because the ArrayList does not know about the changes. If the Activity is no longer in the foreground as would be the case if the user goes to the home screen and then is brought back to the foreground I would like for the Activity to not display what it did prior but rather reload the data using the ListAdapter the view is bound to. I think something needs to call finish() but I am not sure what.
This is what I have in the Activity.
CODE:.......................
I've been trying to show a "Do you want to exit?", type dialog when user attempts to exit an activity. However can't find the appropriate API hooks. Activity.onUserLeaveHint() initially looked promising, but I can't find a way to stop the activity finishing.
View 2 Replies View RelatedI am on my first Android application and I am on a timeline so details and examples will be useful since my knowledge is still minimal. I want my first screen to present the user with a list of activities to choose from. In my situation it is a recipe app where the user first chooses the type of food, such as, Beef, Chicken, or Pork. I want the application to launch an activity depending on the list item that the user clicked on. I am not sure if I should use a list view, a text view, a scroll view, a list activity, an activity group...
View 1 Replies View Relatedimplicit intent with class name as action defined in intentfilter. is not working. Only it it is defined as "android.intent.action." it is picked up ? is it so ?
I have app A with the following in manifest.xml file
CODE:.............
In app B, i tried to call the activity in A using below code.
CODE:.............
This code works. But not above line.
I have a EditText in android in which i want the user to enter the text and checks for the condition "BYE"
Code sample..
How can i make user to enter the text?The UI should wait for the text to be entered(something like we have InputStreamReader in java applications).
I have had this same problem happen twice to me on 2 different phones on 2 different Verizon accounts!
The password screen locks and when it asks for the user name and password it states invalid user name / password!
Is this a known problem since when I called and talked to both Verizon and HTC the only thing they could tell me was to do a hard reset and they weren't aware of this problem?
Recently some jackholes have started spamming me texts with horoscope/dating/whatever ads. They send like 4 at a time about twice a day and I'm sick of it.
I saw a few market apps that claim to block sms/calls. Reviews on all were mixed good & bad. Just wondering if anyone has had any experience with any or had a suggestion for an app to stop this madness.
Also curious if anyone knows how they actually block. Basically I want to know if I just don't get a notification, or it just doesn't show in messaging app/handcent, or if it really gets blocked - as in not actually sent to me and does not charge me for a text.
If all they do is stop the notification I can just use settings profiles for that. But I'd really like to not have them be charged to me. I am on a 250/month plan and might risk going over at the rate they're being sent.
Hey guys, i am developing an application, and suddently, working with XML, designing a menu, appear this error and now, apparently everything is ok, but i can not run the application.
That was the message from Console: [2010-04-24 21:45:11 - DroidWallet] W/ResourceType( 3148): Bad XML block: header size 2370 or total size 0 is larger than data size 0