Viewpager:从左向右滑动的问题

时间:2017-10-30 19:04:43

标签: android android-layout android-fragments android-viewpager swipe-gesture

我在LinearLayout中有一个ViewPager。当我滑动到下一个片段(从右到左)时,它可以正常工作,我可以在任何地方触摸屏幕并且它可以工作。但是当我尝试回到上一个片段时,从左向右滑动,它只能在屏幕左侧的一个狭窄部分上工作(图片上的黄色区域):

enter image description here

我的xml:

<LinearLayout 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:id="@+id/palette_bg"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:weightSum="1"
    android:windowSoftInputMode="adjustPan">

    <android.support.v4.view.ViewPager xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/pager"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_weight="0.15"
        android:windowSoftInputMode="adjustPan"
        tools:context="com.internet_of_everything.chineesecards.MainActivity">
    </android.support.v4.view.ViewPager>

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_marginBottom="2dp"
        android:layout_marginLeft="2dp"
        android:layout_marginRight="2dp"
        android:layout_marginTop="2dp"
        android:layout_weight="0.85"
        android:baselineAligned="false"
        android:orientation="horizontal"
        android:visibility="visible"
        android:weightSum="1">

        <ImageButton
            android:id="@+id/button_back"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_weight="0.5"
            android:background="?android:attr/windowBackground"
            android:contentDescription="@android:string/untitled"
            android:visibility="visible"
            app:srcCompat="@drawable/button_back" />

        <ImageButton
            android:id="@+id/button_next"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_weight="0.5"
            android:adjustViewBounds="false"
            android:background="?android:attr/windowBackground"
            android:contentDescription="@android:string/untitled"
            android:elevation="0dp"
            android:visibility="visible"
            app:srcCompat="@drawable/button_next" />
    </LinearLayout>
</LinearLayout>

更新 在我的片段中,我有2个线性布局:使用EditText和TextView。同时只能显示EditText或TextView。 我有onTouchListener:当显示EditText时,它隐藏键盘并在用户点击此edittext外部时检查EditText的内容。 我可以使用这个onTouchListener并解决从左向右滑动的问题吗?

public class OneCardFragment extends Fragment {

    public OneCardFragment() {
        // Required empty public constructor
    }
    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container,
                             Bundle savedInstanceState) {

        rootView.setOnTouchListener(new View.OnTouchListener() {
            @Override
            public boolean onTouch(View v, MotionEvent event) {
                InputMethodManager imm = (InputMethodManager) getContext().getSystemService(INPUT_METHOD_SERVICE);
                //hides keyboard
                imm.hideSoftInputFromWindow(rootView.getWindowToken(), 0);
                //checks edittext content
            }
        });
    }
}

1 个答案:

答案 0 :(得分:0)

返回false,表示其他视图也有机会处理该事件。

public class OneCardFragment extends Fragment {

    public OneCardFragment() {
        // Required empty public constructor
    }
    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container,
                             Bundle savedInstanceState) {

        rootView.setOnTouchListener(new View.OnTouchListener() {
            @Override
            public boolean onTouch(View v, MotionEvent event) {
                InputMethodManager imm = (InputMethodManager) getContext().getSystemService(INPUT_METHOD_SERVICE);
                //hides keyboard
                imm.hideSoftInputFromWindow(rootView.getWindowToken(), 0);
                //checks edittext content
                return false;
            }
        });
    }
}