I built a screen that looks like this:

but if login fails the screen turns out to look like this:

I used EditText and the code looks like this:

<TextView android:layout_height="wrap_content"  
            android:layout_width="wrap_content"  
            android:text="email"></TextView>  
        <EditText 
            android:layout_height="wrap_content"  
            android:layout_width="fill_parent" 
            android:id="@+id/username"
            android:hint=""
            android:textStyle="normal"
    android:singleLine="true" 
            android:inputType="textEmailAddress">                
        </EditText>  
        <TextView android:layout_height="wrap_content"  
            android:layout_width="wrap_content"  
            android:text="password">
        </TextView>  
        <EditText 
            android:layout_height="wrap_content"  
            android:layout_width="fill_parent"
            android:id="@+id/uc_txt_password" 
            android:hint=""
            android:textStyle="normal"
    android:singleLine="true"
            android:inputType="textPassword">
        </EditText>  

Any ideas?

Update: It seems that the bogus display is the way it displays on Ice-cream-sandwich by default. I am using an older version of android (2.2) on which the display looks like the first attached pic.

link|improve this question
1  
@Vivek please be more careful when you edit, you have removed the images. – Shadow Wizard Nov 21 '11 at 9:08
Oh I am so sorry.I didn't notice that.Thanks a lot for that@Shadow Wizard – Vivek Kalkur Nov 21 '11 at 9:15
Are these the default edittext backgrounds? – jakk Nov 21 '11 at 9:18
What's in style "normal"? – jfs Nov 21 '11 at 10:32
@Shadow Wizard - what do you mean ? can you be more specific ? – alfasin Nov 23 '11 at 5:15
show 3 more comments
feedback

1 Answer

up vote 2 down vote accepted
+50

ICS Introduces a more "open" text layout (look at the gmail app) where edit text's default style lack borders. You should more rigidly define your style to be how you want it on all devices if you don't want it to look like how the device sets it. Perhaps use some 9 patch images and state selector xml files. So if you're setting the background to something like white and not defining any other styles it might be inheriting from Holo.Dark and using this as the edit text bg: https://github.com/android/platform_frameworks_base/blob/master/core/res/res/drawable-hdpi/textfield_default_holo_dark.9.png

Thus, no visible text. Define your style more rigidly, or set your themes better and don't override the other backgrounds.

link|improve this answer
I know that I'll need to find a better solution for ICS (said that in the update) - thanks for the link though. – alfasin Feb 22 at 10:59
Not sure why you put up a bounty... if you just get a good background 9-patch and define your style your issue is solved on all of the current API Levels. You could even go steal the 9 patch from the resources in the GB Branch if you wanted. – Sleepybear Feb 23 at 3:00
@Sleepybar what is GB Branch ? GitHub ? and you're right, but I'm not sure how to remove the bounty, maybe I should just award it to you... :) but seriously, I would rather find the bug and fix it then go for a workaround. – alfasin Feb 23 at 4:24
1  
The bug to fix is you setting the background to white instead of using the complete OS/Rom Theme. GB Branch is Gingerbread branch, you can access it on github. Look in frameworks_base/core/res/res for the resources they use. You could also just supply your own drawable (probably a 9 patch) for the background. – Sleepybear Feb 24 at 2:29
Thanks! since ICS behaves different from Gingerbread - Do you think that I should change the display according to OS ? – alfasin Feb 24 at 6:14
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.