Android :: Notified When Software Keyboard Is Showing - Hiding

Sep 29, 2010

Is there a way to be notified when the keyboard is about to show, or has shown? The following events would be great:

keyboardWillShow
keyboardDidShow
keyboardWillHide
keyboardDidHide

Android :: notified when software keyboard is showing - hiding


General :: MK802 Mini PC - Disable Soft Keyboard Hiding With USB Keyboard Available?

Jun 22, 2012

I'm using an MK802 mini PC. I don't have a USB keyboard yet.

When I plug in a wired USB mouse, I can use that to click on the on screen soft keyboard.

But when I plug in the wireless dongle for a USB mouse, the Android soft keyboard doesn't show anymore (I guess this is because the wireless dongle supports both keyboard and mouse, and tells Android a hardware keyboard is available, so Android doesn't show the soft keyboard).

Any way to ignore this and always show the soft keyboard? Or another keyboard I can download which will always show?

View 1 Replies View Related

Android :: Showing - Hiding Own Number

Mar 28, 2010

I am wondering if Android allows you to suppress sending the own number when calling someone. I suppose there'll be a general option (like generally sending/hiding number) but I'd be particularly interested if there's an option to send it only to certain numbers (like all stored contacts or maybe even specific contacts) and not to all.

View 13 Replies View Related

Android :: Hiding And Showing Titlebar At Runtime

Jun 14, 2009

The option I see so far is calling requestWindowFeature (Window.FEATURE_NO_TITLE). Is there a way to bring it back programmatically?

View 2 Replies View Related

Android :: Showing - Hiding Dynamically Title Bar

Apr 10, 2009

I already know ho to hide the title bar with the getWindow().requestFeature(Window.FEATURE_NO_TITLE); in the Activity onCreate() method before the setContentView() call.

But i want something different. I'd like to show/hide the title bar in any moment. To make an example, place a button in the view that toggle the title. Unfortunately the requestFeature can be done only before the call to setContentView().

View 5 Replies View Related

Android :: Hiding Forcibly Opened Soft Keyboard

Nov 11, 2009

i am attempting to hide a forcibly opened soft keyboard using // hide the soft keyboard View view = (View) findViewById(R.id.DebugText); InputMethodManager manager = (InputMethodManager) getSystemService (Context.INPUT _METHOD_SERVICE);IBinder binder = view.getApplicationWindowToken(); if (binder != null) {manager .hideSoft Input From Window(binder, 0); but it doesn't seem to be working - any ideas?

View 8 Replies View Related

Android :: Hiding Keyboard In Override Done Keypress Of Edit Text

Apr 18, 2010

I have used a bit of Android code to override the "Done" button in my EditText field:
myEditField.setOnEditorActionListener(new TextView.OnEditorActionListener() {
@Override public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
if (actionId == EditorInfo.IME_ACTION_DONE) { mySubroutine();
return true; } return false; } } );

Activating the field calls up the keyboard, and pressing "Done" evaluates mySubroutine() successfully. However, the keyboard no longer goes away when I press "Done". How do I restore this default behavior to the routine?

View 3 Replies View Related

Android :: How To Know Whether SIP (Soft Input Panel - Keyboard View) Is Showing - Not?

Apr 27, 2009

I wonder it is possible to know whether SIP is showing to user or not. A user application(Activity) can show or hide the Soft Input through the Input Method Manager. There is some APIs to handle the SIP. But I can't find API to know status of SIP(it is on showing or hiding).

When SIP is showing to user. It disturbs the UI of the Activity. So Activity should know about the information related with upper case. How can I know that?

View 3 Replies View Related

Sprint HTC Hero :: Keyboard - Text Not Showing

Feb 6, 2010

I have had a strange issue for the past couple days. Sometimes when I type on the keyboard, no text is entered into the text box, but I see the letters "pop up". I have tried to change orientation, and exit the app and no luck. The only thing that really works is to reset the phone. i have even tried to use Better Keyboard and it does it too.

View 19 Replies View Related

Android :: Way To Change What To Get Notified For?

Jun 24, 2010

Finally bought my Droid last week, and am very glad to have done so. My first smart phone, and I'm having a blast. One question about FB notifications. Is there any way to change what you get notified for? Right now i only get notified for pokes. It'd be nice to hear "Droid" when someone posts on my wall or something. Any ideas?

View 1 Replies View Related

Android :: Getting Notified Of Installs

Nov 5, 2009

I'm wondering if there is any way to get notified when applications are installed. I'd like to install my app as a service which just waits to be notified on app installation.

View 2 Replies View Related

Android : How Can I Be Notified When It's About To Change?

Sep 30, 2010

Can I be notified of the following events for an Activity: I realize that I can probably override the main View's onSizeChanged() and be notified when the View has changed, but how can I be notified when it's about to change?

View 1 Replies View Related

Android :: How To Get Notified (Listen) For Changes In SD Card?

Aug 13, 2009

I am creating an app and the requirement is - I have to listen to the SD card for new data comes in. Whenever a new file is downloaded into SD card , I want to be notified. (or say , I want to listen for changes). Any code sample, link will be nice to have.

View 7 Replies View Related

Android :: How To Get Notified For Incoming Call Or SMS?

Oct 16, 2010

I'd like to implement a feature that monitors incoming calls and SMS and blocks them if necessary. But I don't know how to capture such events, could someone tell me how to do that?

View 2 Replies View Related

Android :: Sensor Not Being Notified When In Standby

May 28, 2009

I am listening events from accelerometer sensor and everything is going right. The problem occurs when phone gets in standby mode and I am not being notified by sensors anymore. Does Anyone know if it's possible to get sensor notifications, by implementing a listener, even if phone is in standby?

View 2 Replies View Related

Android :: Getting Notified When Documents Changed

Jan 28, 2010

I am currently working to get notified when a new document is added/edited/deleted.But I dont find any way to do this.

View 3 Replies View Related

Android :: How To Get Notified For Changed Date?

May 12, 2010

Do any have idea about how do I get notification when the day changes from 23:59:50 to 00. There in intent broad casted as DATE_CHANGED by android but this intent is to get notified only if the date is changed by user it seems. I have basically have my function to run on the event.

View 2 Replies View Related

Android :: How To Get Notified When ListView Displayed?

Nov 12, 2010

I have a list view with array adapter to show user some information that retrieved from Internet, As we all know reading data from Internet requires some time to finish, but if I try to read data on getView(), it means user must wait and he/she cannot see anything at that time, the screen is black for long a time because it will cost too much time to finish. This is unacceptable.

So I think maybe I can show user a empty list view first and then display a progress dialog to let user know I'm now just reading data. The background task will read data and send message to UI thread when job is done. But there's one problem: I don't know how to get notified when list view is displayed. I mean, I want to know when & where to show that progress dialog when I first show user an empty list?

View 2 Replies View Related

Android :: Getting Notified When Audio Played

Nov 9, 2010

Is it possible to be notified in Android when the Audio system starts playing audio? it looks like i should wire up a BroadcastReceiver, but it's not clear what i would listen for. I could listen for the MediaPlayer intent, but that would only capture when that particular application was playing audio, not when a third party application played audio, etc.

View 2 Replies View Related

Android :: Way To Be Notified From App Of Sdcard Mount

Jun 9, 2009

Is there a way to be notified from my application of sdcard mount? any services etc?

View 3 Replies View Related

Android :: Get Notified When New Access Point Is Added?

May 26, 2010

I was wondering is it possible to get a notification of when a new configured network is added to the Wifi Manager in Android? I know you can get the current list of configured networks.

http://developer.android.com/intl/de/reference/android/net/wifi/WifiM...

But is it possible to get notification of when a new one is added? I don't see anything in the Wifi Manager that would be helpful. How this could be achieved?

View 2 Replies View Related

Android :: Get Notified When A New Access Point Is Detected?

Nov 23, 2010

Does Android provide a notification of being in vicinity of a new Wifi Network? Whether the device is configured to connect to that wifi network depends on whether the device has the wifi configuration set for that particular wifi network, but is it possible to get notification whenever entering any new wifi network?
I saw the WifiManager class but the states inside the class do not seem to achieve what I am trying to do. Any ideas?

View 1 Replies View Related

Android :: Notified When Foreground (top) Activity (application) Changes

Oct 6, 2010

I want to write a service for Android platform that is notified when the current foreground activity changes. Basically the service should do some tasks only when the top activity changes. Is there any way to subscribe and to be notified when this kind of event occurs? Or there is no possibility and the service should poll from time to time the list of running activities and to check what is the foreground activity ?Not preferable solution...

View 1 Replies View Related

Android :: New Version Of Application - How User Get Notified?

Mar 12, 2009

If I upload a new version of the application. Does the user knows that there is a new version of the app?

View 3 Replies View Related

Android :: Any Way To Get Notified When New Task Start Or Finish?

Dec 2, 2009

I would like to know whenever the top task is changing. i.e. when a new task is starting or a task is finishing or when the current active task changes. Is there an intent that is sent that I can listen to?

View 2 Replies View Related

Android :: Scheduling Repeat Task And Being Notified

Mar 15, 2009

I'm trying to find the "correct" way to do the following:
I have an activity with a button that starts a repeating task in the background. That is, if the user goes away from my activity, I want my task to still be scheduled and executed every x minutes. I want a status TextView to be displayed on the activity, and if the task happens to start executing while my activity is showing, the TextView should be updated so the user can be aware of what's going on. So basically, is there a way to start a scheduled background repeating task and be notified when it is executed? From what I saw in the sample applications, I understand I'm supposed to use AlarmManager and a Service but I'm not sure about the notification part.

View 7 Replies View Related

Android :: How To Get Notified If Phone Access Internet?

Jun 26, 2010

Is there a broadcast receiver or some kind of setting that we can listen/monitor to get notified if the internet/network has been connected.

View 1 Replies View Related

Android :: How To Be Notified On Wifi Network Status Change?

Jun 25, 2010

I am writing an app that connects to a telnet server via wifi. I have a service that manages the socket connection. It all works fine, but when the phone sleeps it disconnects the wifi radio, which causes the socket connection to break (and throws a SocketException). I feel like I should be able to set up a a broadcast receiver whose onResume() method is called when the wifi network connection is lost, and that would allow me to gracefully shut down the socket, and re-open it if the network is immediately re-connected. But I can't find anything like that in the doc or via searching.

View 2 Replies View Related

Android :: Activity Get Notified When External Storage State Changes?

Jul 24, 2010

I would like my Activity to be informed when the SD card is removed, since it relies on files from the SD card (to keep apk size down) but for compatibility reasons is not targeted at Froyo. I'd like to close the application when the SD card is removed/mounted (giving the user a dialog message to inform them of course) so that I don't get IOExceptions etc (I'd quite like to not have to check everytime I load a file to see if the external storage is available, I already do a check on application launch). There doesn't seem to be any attribute in the manifest for this (like configChanges) that I can find.

View 5 Replies View Related

Android :: Get Notified When User Send SMS Or Make Call

Jun 10, 2009

I've been searching the application permissions and I see no way to make an app to enable getting notified when the user send an SMS or make a phone call. How can I accomplish this task?

View 5 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved