键盘移动片段中活动的项目

时间:2018-03-16 07:49:35

标签: android android-layout android-fragments

编辑:看起来this bug是这里的主要问题

在我的应用程序的 MainActivity 中,我有一个自定义底部导航,这是一个水平回收者视图。我可以在所有片段中访问此Recyclerview以进行导航。问题是当我专注于片段中的编辑文本时,软输入法移动了recyclerview,我怎样才能强制屏幕平移我片段布局中的项目。

[![这里是我的片段与活动的底部导航] [2]] [2]

[![在此处输入图像说明] [3]] [3]

我尝试将android:windowSoftInputMode="adjustPan"然后android:windowSoftInputMode="adjustNothing"放入我的清单活动中。

然后我尝试以编程方式在我的活动中

然后我这次试图在我的片段中做同样的,没有任何帮助。字面上没办法让键盘忽略这个活动。

主要活动布局:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#d9d5ce"
    android:orientation="vertical"
    android:focusableInTouchMode="true"
    >

    <android.support.v7.widget.Toolbar xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:app="http://schemas.android.com/apk/res-auto"
        android:id="@+id/toolbar"
        android:layout_width="match_parent"
        android:layout_height="?attr/actionBarSize"
        android:background="@drawable/toolbar_background"
        android:theme="@style/ToolBarStyle"
        app:layout_collapseMode="pin"
        app:layout_scrollFlags="scroll|enterAlways"
        app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
        app:titleTextAppearance="@style/TextAppearance.AppCompat.Subhead" />

    <FrameLayout
        android:id="@+id/frame_container"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_above="@+id/recycler_view"
        android:layout_gravity="center"
        app:layout_behavior="@string/appbar_scrolling_view_behavior">


    </FrameLayout>


    <android.support.v7.widget.RecyclerView
        android:id="@+id/recycler_view"
        android:layout_width="match_parent"
        android:layout_height="65dp"
        android:layout_alignParentBottom="true"
        android:background="@color/accent"
        android:fadingEdge="vertical|horizontal"
        android:fadingEdgeLength="60dp"
        android:fillViewport="false"
        android:requiresFadingEdge="horizontal|vertical"
        app:layoutManager="android.support.v7.widget.LinearLayoutManager">


    </android.support.v7.widget.RecyclerView>


</RelativeLayout>

编辑:我已经尝试了可能的解决方案,例如android:windowSoftInputMode="adjustPan"问题是当片段内的edittext获得焦点时,我的活动中的Recyclerview向上移动而我丢失了泛

仅供参考:我的片段的根布局为ScrollView

3 个答案:

答案 0 :(得分:0)

ScrollView

之上汇总RelativeLayout(作为 RootLayout

视图会相应调整并向上移动 !!

<ScrollView
  android:width="match_parent"
  android:height="match_parent"
  ....
  .... >
     <RelativeLayout
       .....
       .....

修改: -

如果您想在键盘打开后隐藏视图,可以尝试this

答案 1 :(得分:0)

如果您想隐藏键盘,可以试试这个。

 public static void hideSoftKeyboard(Activity activity) {
    InputMethodManager inputMethodManager =
            (InputMethodManager) activity.getSystemService(
                    Activity.INPUT_METHOD_SERVICE);
    inputMethodManager.hideSoftInputFromWindow(
            activity.getCurrentFocus().getWindowToken(), 0);
  }

答案 2 :(得分:0)

我通过观察键盘并设置导航栏的可见性来解决这个问题。这是完整的解决方案:

https://medium.com/@egek92/beaware-of-android-bug-5497-for-your-own-sake-19cf76abb7e5