When positioning an EditText at the bottom of the screen with
LinearLayout, the virtual keyboard is appearing over the EditText...
as if the activity window is not being panned enough. The amount of
covering appears to be related to the target device's resolution. With
HVGA, the keyboard will cover the bottom ~20% or so. With WVGA854 the
EditText will be completely covered.

The following layout demonstrates the issue...

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/
android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">
    <TextView
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:layout_weight="1"
        android:text="@string/hello"/>
    <EditText
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_weight="0" />
</LinearLayout>

Its gotta be something basic, but I'm stumped.

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to