Android :: ScrollView Disappears When Keyboard Appears On Screen

Aug 11, 2009

I have the following layout:

<?xml version="1.0" encoding="utf-8"?>

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/ android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="wrap_content"> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/ android" android:orientation="vertical" android:layout_width="wrap_content" android:layout_height="wrap_content">

<TextView android:id="@+id/title" android:text="@string/.......................

When I click on the EditText "@+id/updateStatus" of the ScrollView, the keyboard appears on the screen of the device and the ScrollView is hidden. I'd prefer to hide the ListView "@+id/myListView" at the end. Is it possible? Why that view is hidden?

Android :: ScrollView disappears when keyboard appears on screen


Jelly Bean :: Keyboard Disappears From Screen?

Oct 26, 2013

I have a couple of Chinese made smartphones with Android 4.1 and 4.2, and Telstra (Australia) pre-paid sims. To recharge a sim, I have to call #100# then enter a selection from the resulting text menu, in this case by typing a 1. The problem is that as soon as the call connects and the text menu appears, the keyboard has gone from the screen, so I have no way of typing a 1. If I tap the keyboard icon to bring the keyboard back on screen, the call automatically disconnects. Is there a way of 'locking' the keyboard on screen? (Unfortunately my grandchildren aren't in the same town as me).

View 3 Replies View Related

Android :: Which Event Fires When On Screen Keyboard Appears?

Nov 24, 2010

I'd like to hook to an event that fires when android's on screen keyboard appears. For example when user taps EditText to bring up the keyboard. Anyone know which event (or listener) to use?

View 2 Replies View Related

Android :: How To Specify Which Soft Keyboard Appears?

Jun 24, 2010

if application has EditText widget and user clicks on it, a qwertysoft keyboard appears. how do you get a numeric, 12key, or phone soft keyboard to appear instead. (I have searched documentation but I cannot find solution.)

View 2 Replies View Related

General :: Keyboard Disappears While Typing

Mar 30, 2013

I have a Huawei Honor U8860, which is rooted and running Miui 3.1.11. I experience an annoying problem with the keyboard. Here is what happens.

Any time I am entering text, whether i'm texting, facebooking, emailing, navigating, googling, etc, the standard android keyboard disappears while i'm typing. It's very random and not consistent. Sometimes I can type normal and sometimes only 10secs before it happens. Then I'll have to wait to get the keyboard reappear. After the keyboard reappears it may stay up for 10 sec before it disappear again.

I have tried installing Touchpal Keyboard. It works fine in the beginning, but after a while the problem come back and the keyboard disappears.

View 1 Replies View Related

HTC Legend :: Keyboard Disappears During Calls / Solution For It?

Sep 10, 2010

I have a HTC Legend and I experience problems accessing the keyboard during a call.

The screen goes black as soon as the call is connected and the keyboard only appears very briefly when i press the on/off button (first I have to unlock) and then disappears again before I can enter/press a digit. Even if I press a digit it is not registered. The screen just goes black, and in most cases I have to press the on/off button again to "wake" the screen up.

I usually have a bluetooth unit connected and find this problem very annoying since it is almost impossible to use services that require the user to enter digits.

1) Does anybody have a similar experience?
2) Is there a setting that I have not found/set correctly?
3) Your solutions/experiences are most welcome.

View 2 Replies View Related

Android :: EditText Lose Focus When Keyboard Appears

Apr 28, 2010

I make ListView that has some items that has one EditText and one ImageButton. When touch the EditText in ListView's Item, Keyboard was appeared but EditText lose focus. What can I do for resolve this problem? I can use ScrollView instead of ListView by addView in ScrollView. And in ScrollView, when I touch the EditText, keyboard was appeared and EditText keep the focus. But I must optimize the list because the list may has many items. In ListView, I can optimize list in getView. But in ScrollVIew, there was not way to optimaize list. So, I must use ListView.

View 2 Replies View Related

Android :: Soft Keyboard Appears When Activity Starts

Aug 13, 2010

I have an activity which loads a TableLayout. This is made up of TextView and EditView fields. When I run my app within the emulator the layout appears correctly (WITHOUT the soft keyboard appearing). When I run the app from a device (HTC Evo) and enter the activity the soft keyboard ALWAYS appears. I tried doing an OnFocusChange() for the first field in the layout and then doing:

InputMethodManager imm = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE); imm.hideSoftInputFromWindow(tvIndications.getWindowToken(), 0);

It doesn't work. The soft keyboard always appears.

View 4 Replies View Related

HTC Incredible :: Swype Freezes And Keyboard Disappears On Dictionary Input

May 5, 2010

For some reason if I try to input a word into the swype dictionary specifically 'haha' it freezes for a second and the keyboard disappears. Why this would happen?

View 8 Replies View Related

General :: Galaxy Y S6102 Screen Goes Blank / Nothing Appears Except Samsung Logo Screen

Apr 29, 2014

i have tried to install kitkat version for galaxy y duos s6102,for that i installed clockwork mod n cynogenmod n kitkat file..but after installing the screen goes blank,nothing appears except Samsung logo screen,

View 2 Replies View Related

Android :: ScrollView .scrollTo Not Working - Saving ScrollView Position On Rotation

Jul 16, 2010

I must be overlooking something real simple here, but i think i'm trying to do something fairly basic.. Simply retain the scrollbar position of a ScrollView on orientation change...

Here is the code for my onSaveInstanceState and onRestoreInstanceState.. sView is the container for the ScrollView layout. Within my scrollview is a linearlayout with a lot of textviews.

CODE:............

If I set a Toast with the values of sViewX and sViewY on the Restore, the values are kept and correct.

I just tried to do a sView.scrollTo(0,150); in my onCreate.. just to see if that would open the activity at 150px down, and it didn't. I think my issue has to do with the .scrollTo method.

View 1 Replies View Related

Android :: Create A ListView That's Not In A ScrollView - Or Has The ScrollView Disabled

Mar 10, 2010

I want some of the goodies in a ListView, like being able to use a ListAdapter, and item selection, etc, but I don't want the ScrollView portion of it. I want to implement that part myself, in a different way (why or how I do this isn't really the point of this question, so please don't ask "why"). Is there a way to have a ListView that's not in a ScrollView or has the scrolling disabled?

View 2 Replies View Related

Android :: White Screen Appears In Main Activity?

Feb 15, 2010

public class Profile extends Activity{
WebView prof_webv;
private String selected_username;
private static final String INDEX = "http://14.143.227.140";

public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
requestWindowFeature(Window.FEATURE_NO_TITLE);
setContentView(R.layout.main);
prof_webv = (WebView) findViewById(R.id.mainwebview);
prof_webv.getSettings().setJavaScriptEnabled(true);
prof_webv.getSettings().setSupportZoom(false);
prof_webv.loadUrl(INDEX);}

@Override
public boolean onKeyDown(int keyCode, KeyEvent event) {
if ((keyCode == KeyEvent.KEYCODE_BACK) ) {
finish();
return true;
}
return super.onKeyDown(keyCode, event);
}
}

This is my new Activity for a WebView. When the user clicks back, I simply want to close this Activity and return to my previous one. Notice, I put "onKeyDown" -> Finish. However, it's not working. Instead, I click "back", a blank white screen comes up.. (it doesn't even hit that onKeyDown Statement when I try to debug it)! When I hit "back" the second time, then it will go back to my previous Activity.

View 1 Replies View Related

Android : Add Scrollview To Screen In Droid?

Jan 7, 2010

I done my application in portrait configaration but when load my application in to device its coming portraint configaration but i keep in landscape mode missing some controls.so i want to add scroll view to screen when changing the config to landscape.how i can add scrollview to screen.

View 1 Replies View Related

General :: Can't Answer Phone If Slide Screen Disappears

Sep 4, 2012

I have to call back about one out of 3 callers because when I try to slide the answer button, something goes wrong and the screen to answer disappears without answering the phone. the phone continues to ring, but I can't answer it.

1) Is there an app to change the answering options?

2) is there a way to get the slide screen back so I can answer?

View 3 Replies View Related

Android : Lock 2.0 As Default Screen Locker / Modify Information Appears On It?

Aug 2, 2010

Does anyone know how to set the Lock 2.0 as the default screen locker? If I reboot my CDMA Hero, then the standard Lock screen will appear. If I manually run Lock 2.0 first, then it will use that until I next reboot. Also, is there a way to modify the information that appears on the lock screen? I'd love to be able to see missed calls / reminders there.

View 1 Replies View Related

Android :: Droid ScrollView Not Aligning In Screen Landscape / Can I Fix

Oct 19, 2010

I am having a problem in ScrollView. When i run my application on X10i it works fine but when i change the view to landscape half of the layout at the bottom (RelativeLayout) go down to the screen. Here is my Layout code. please suggest a general solution that will be applicable to all phones not only X10i. code...

View 2 Replies View Related

Android :: ScrollView Occupies Entire Screen Height?

Oct 10, 2009

I'm having trouble with this layout - I need a ScrollView, then a LinearLayout with a button below that:

CODE:........

The scrollview pushes the linear layout under it off the screen. The only way I can get this to work is if I explicitly set the scrollview height in pixels to be less than the total height of the screen, but hardcoding a height isn't going to work on different devices. How can I do this?

View 3 Replies View Related

Android :: How To Know Which Childview Is Shown On Current Screen In A Scrollview

Aug 5, 2010

How can I know which childview is shown on the current device screen, in a scrollview?

I want to make an infinite Ruler App, so I need to dynamically add and remove view when the view is flipping, but how and where can I find out which childview is shown on the current device screen, so I can add or remove the correct view when I get that childview changed notify?

Or, can anyone who can give me some other idea to realize this function?

View 1 Replies View Related

HTC EVO 4G :: Randomly Appears Password Lock Screen

Jul 24, 2010

when i press the home key/close an app the password lock screen appears and it's annoying. Also the volume level doesn't affect my text message notification. long story:A week ago sprint told me to factory reset my phone to get rid of the error 67 problem, ever since then i've had this problem. So they told me to factory reset it again and the problem continued. then they sent a replacement and now i'm still getting the problem before i installed any apps. the SD card is the same though. So i'm confused and don't want to delete everything from the sd card.

View 1 Replies View Related

General :: Blue Screen Appears Every Time On Restart

Dec 6, 2013

I own a Karbonn A9+/Cherry Mobile Flare (JB 4.1.2), with CMX JB as my current ROM.

Now, I had got a problem with my device once when I restarted it. My phone just showed me the splashimage for about 2-3 mins and showed a blue screen, which just stuck to it. I removed its battery & restarted it, but it just booted up the same blue screen again.

I solved it by restoring my system.img by my previous nandroid backup. But still, I'm curious to know why and how the blue screen appears.

Screenshot:

View 3 Replies View Related

Android :: Make ScrollView With A RelativeLayout With Multiple Child Layouts Fill The Screen

Aug 20, 2010

I have a layout that has just a ScrollView visible. It has a relative layout as its child. This layout has several other layouts (mainly text views) as its children. When the text is not big enough, the scroll view does not expand itself to fit the whole screen. Instead, it shows a gap at the bottom where the background shows. I tried setting fillViewPort=true on the ScrollView, but that just made the first child layout (RL1) to fill the screen.

CODE:....................

View 1 Replies View Related

Android :: Child TextView In ScrollView With Large Amount Of Text Pushes Other Views Off The Screen

May 6, 2009

I am trying to create an activity layout that has a top level vertical linear layout like so:

CODE:................

This works ok as long as the wordDefinition text isn't very long. But, when I set the text to something very long, it pushes the back button off the bottom of the screen. Why? Isn't the ScrollView supposed to scroll the text in the child TextView?

I've tried playing with weights (e.g., giving the top text view a weight of .2, the scroll view a weight of .7 and the button a weight of .1, but to no avail.

View 4 Replies View Related

HTC Incredible :: Locked Phone But New Text Message Appears On Front Screen

Sep 7, 2010

I don't understand why while using the lock feature on my Incredible when i recieve a text it shows up on the screen before i unlock the phone. isn't the point of locking it to keep prying eyes from seeing your stuff? Is there a way to prevent the contents of the text from showing up before unlocking while still being notified that you have recieved a message?

View 13 Replies View Related

HTC Magic :: Saphire - When Want To Activate The APN Settings Should Appears In The Lower Part Of The Screen But It Is Not

Oct 23, 2009

How to activate a HTC Magic (Sapphire).

I have the unlock code and a Vodafone SIM card with internet activated. I put the sim card in phone, tun it on but it doesn't ask me for unlock code ! (maybe it's allready unlocked because on the screen appears Vodafone).

When I want to activate the APN settings should appears in the lower part of the screen but it is not. I tried other method of activation - from G1: to press menu buttton after second google user and pass input entered - for apn field appears. No succes this time too.

Any idee how to activate ?

View 15 Replies View Related

General :: Galaxy Y S5360 Screen Appears Completely White Like Flashlight

Jul 22, 2012

Whenever i start my samsung galaxy y s5360 screen appears completely white like a flashlight, but the phone is working i can recieve callls on my phone but cannot see anything on my device. even in dwnld mode & recovery mode the same problem persits, i cannot see anything .

I have installed custom creed v2.0 rom on my android device. Recently i have replaced motherboard of my device. Under Warranty.

I Want To Flash stock rom on my device but i cannot see anything on my device so i am unable to flash my device.

Another problem is that when i enter download mode odin detects my device but when i try to flash the rom it says unable to open com port.

At Present my device is working properly but when i restart my device the problem returns !!!!!!

View 1 Replies View Related

General :: HTC Flyer 3G WiFi - Black Screen Appears With Triangle Mark?

Apr 2, 2012

I got HTC flyer 3G from my friend as gift....that one was rooted and s-off .when i tried to flash custom rom it showed option like recovery,wipe/factory reset,.

After 2 days,I have installed AVAST Anti theft app and forgot the password for it...so i gave it to reinstall the OS...and it was back to normal...So I thought to put custom rom..and started to boot the device with SD card inside....BUT the recovery didnt show any options as it was shown earlier,the black screen appears with triangle mark with '!' symbol....

The screen shows the following message

FLYER PVT SHIP S-OFF L
HBOOT- 6.10.1002
MICROP-0850
RADIO-3809.04.04.2LM
eMMC-boot
may 4 2011

View 1 Replies View Related

General :: Recover Files - Screen Is Broken But Appears To Power Cycle

Jun 8, 2012

My Motorola maxx has a broken screen, there is no image at all. The device appears to power cycle, and when connected to win 7 there are 2 drives to explore, both appear as unformatted.

How to recover my files ? When I connect my new maxx the folders are also unreadable.

View 1 Replies View Related

Android :: Move Cursor In On-screen Keyboard With External Keyboard

Nov 1, 2010

I am new in Android and i am working to make an on-screen keyboard which can be visitable via arrow(direction) keys of my external keyboard. I mean i wanna move left, right, up and down in the on-screen keyboard's UI (keys) with pressing arrow keys from my external(hardware) keyboard. The key that cursor is on should be focused, when i press an arrow key from my external keyboard the focused key should change and when i press "enter" from my external keyboard it should be operated.(written to the screen etc.) How can i make this? Is there any idea? How can i make virtual keyboard's keys visitable? It doesn't look like moving around a matrix of buttons.

View 2 Replies View Related

Motorola Droid :: On Screen Keyboard Faster Then QWERTY Keyboard

Dec 11, 2009

Dont get me wrong, the QWERTY keyboard is sick, and I love it. But after typing on the keyboard for while, I wanted to switch it up, so I tried the on screen key pad. And to my surprise, the on screen keyboard appears to be much quicker than using the QWERTY!

View 15 Replies View Related







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