简体   繁体   中英

Android: keyboard hidden button

I have two linearlayout firts one with four edit text and second one with a button:

    <LinearLayout android:layout_width="fill_parent"  xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_height="65dp"  android:orientation="horizontal" android:id="@+id/l_fields"
        android:stretchColumns="*"  android:layout_weight="1">
        <TableRow android:orientation="horizontal" >
            <AutoCompleteTextView style="@style/orderDropDownWidth" android:layout_weight="5" android:textColor="@color/black"
                    android:layout_height="wrap_content" android:completionThreshold="1"
                    android:id="@+id/eo_article" android:imeOptions="flagNoExtractUi"   >
            </AutoCompleteTextView>
            <EditText android:inputType="numberSigned" android:layout_height="wrap_content" android:layout_width="wrap_content" android:id="@+id/eo_sale" android:layout_weight="1"
            android:imeOptions="flagNoExtractUi"    android:focusable="true" android:focusableInTouchMode="true">   </EditText>
            <EditText android:inputType="numberSigned" android:layout_height="wrap_content" android:layout_width="wrap_content" android:id="@+id/eo_promo" android:layout_weight="1"
            android:imeOptions="flagNoExtractUi"></EditText>
            <EditText android:inputType="numberDecimal" android:layout_height="wrap_content" android:layout_width="wrap_content" android:id="@+id/eo_disc" android:layout_weight="1"
             android:imeOptions="flagNoExtractUi"></EditText>
        </TableRow>
    </LinearLayout>
<LinearLayout android:layout_width="fill_parent" android:id="@+id/linearLayoutadd" android:layout_height="55dp" 
    android:orientation="horizontal"  android:gravity="right" android:layout_weight="1" >
    <LinearLayout android:orientation="horizontal"  android:gravity="right" android:layout_weight="1" 
                  android:layout_width="wrap_content" android:layout_height="fill_parent">                        
        <Button android:text="@string/LINE_ADD" android:id="@+id/eo_baddline" android:layout_width="wrap_content" 
             android:gravity="top" style="@style/orderlineButtonSalePromo"           ></Button>
    </LinearLayout>

This is teh result: 在此处输入图片说明

But when keyboard is show the button is hidde:

在此处输入图片说明

How can I force to display button when keyboard is open?

您应该在滚动视图中设置线性布局...因此,如果元素在滚动视图中,则在使用键盘时,按钮将移至键盘的顶层

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM