EditText上的键盘重叠问题,adjustpan不起作用

时间:2015-01-25 19:02:47

标签: java android eclipse

我正在使用此代码但键盘仍然与EditText重叠。可以做什么

    <android.support.v4.widget.SwipeRefreshLayout
        android:id="@+id/swipeContainer"
        android:layout_below="@+id/optionsBar"
        android:layout_above="@+id/bottomBar"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        >

            <ListView
                android:id="@+id/listView"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:animationCache="false"
                android:divider="@null"
                android:scrollbars="none"
                android:overScrollMode="never"
                android:dividerHeight="0dp"
                android:listSelector="#00000000"
                android:fadingEdge="none"
                android:scrollingCache="false"
                 />

    </android.support.v4.widget.SwipeRefreshLayout>

        <RelativeLayout 
            android:layout_alignParentBottom="true"
            android:layout_width="match_parent"
            android:layout_height="40dp"
            android:id="@+id/bottomBar"
            android:background="@drawable/top_bar_bg"
            >

            <EditText
                android:layout_width="match_parent"
                android:layout_height="30dp"
                android:inputType="text"
                android:paddingLeft="10dp"
                android:paddingRight="43dp"
                android:layout_marginRight="5dp"
                android:layout_centerVertical="true"
                android:maxLines="1"
                android:hint="Your Message"
                android:textColorHint="@android:color/white"
                android:layout_marginLeft="5dp"
                android:textColor="@android:color/white"
                android:textSize="12sp"
                android:id="@+id/chatBox"
                android:background="@drawable/message_type_area"
                 />

            <Button 
                android:gravity="center"
                android:layout_height="23dp"
                android:layout_width="37dp"
                android:contentDescription="@null"
                android:background="@drawable/send_btn"
                android:layout_centerVertical="true"
                android:layout_alignParentRight="true"
                android:layout_marginRight="5dp"
                android:id="@+id/sendBtn"/>

        </RelativeLayout>

</RelativeLayout>

 <activity
            android:name=".ChatActivity"
            android:windowSoftInputMode="adjustPan"
            android:screenOrientation="portrait" >
        </activity>

enter image description here

4 个答案:

答案 0 :(得分:1)

答案 1 :(得分:0)

使用FullScreenActivity时,

adjustResize无效。一种解决方案是在ScrollView中包含整个布局,并在editText获得焦点时将其滚动到位置editText.getY() + editText.getMeasuredHeight()

或者,如果您想快速解决问题,请在此处查看类似问题的this solution

答案 2 :(得分:0)

属性android:windowSoftInputMode =“adjustResize”不适用于全屏活动,您必须删除活动全屏标记才能获得调整大小调整的优势。

see this: A fullscreen window will ignore a value of SOFT_INPUT_ADJUST_RESIZE for the window's softInputMode field; the window will stay fullscreen and will not resize.

答案 3 :(得分:0)

你的xml文件中的

android:maxLines =“1”并在mainfiest文件中使用。

        <activity
        android:name="Logintab"

        android:windowSoftInputMode="adjustPan"
        android:label="@string/app_name"></activity>