У меня есть scrollview в Activity с несколькими фрагментами. Один из фрагментов содержит перемещаемый вид изображения, поэтому мне нужно остановить прокрутку от перехвата панорамирования.Отключение прокрутки из FrameLayout во фрагменте
У меня есть прослушиватель на моем фрагменте, чтобы установить флаг, чтобы препятствовать просмотру прокрутки.
TourMapFragment фрагмент имеет следующее:
@Override
public void onAttach(Activity activity) {
super.onAttach(activity);
try {
mListener = (OnFragmentInteractionListener) activity;
} catch (ClassCastException e) {
throw new ClassCastException(activity.toString()
+ " must implement OnFragmentInteractionListener");
}
}
@Override
public void onDetach() {
super.onDetach();
mListener = null;
}
/**
* This interface must be implemented by activities that contain this
* fragment to allow an interaction in this fragment to be communicated
* to the activity and potentially other fragments contained in that
* activity.
* <p/>
* See the Android Training lesson <a href=
* "http://developer.android.com/training/basics/fragments/communicating.html"
* >Communicating with Other Fragments</a> for more information.
*/
public interface OnFragmentInteractionListener {
void selectedTourPoint(int position);
void setScrollTouchInteraction(boolean enabled);
}
public void setScrollTouchInteraction(boolean enabled){
mListener.setScrollTouchInteraction(enabled);
}
И файл макета:
<TourMapRootLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="org.idoms.iDomsAndroid.fragments.TourMapFragment"
android:background="@color/mapViewBackground">
<org.idoms.iDomsAndroid.views.ResizableImageView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/tourMap_imageView"
android:layout_gravity="center_horizontal"
android:scaleType="matrix" />
</TourMapRootLayout>
И в TourMapRootLayout у меня есть:
public class TourMapRootLayout extends FrameLayout {
public TourMapRootLayout(Context context) {
super(context);
}
public TourMapRootLayout(Context context, AttributeSet attrs) {
super(context, attrs);
}
public TourMapRootLayout(Context context, AttributeSet attrs, int defStyleAttr) {
super(context, attrs, defStyleAttr);
}
@Override
public boolean onInterceptTouchEvent(MotionEvent ev) {
switch (ev.getAction()) {
case MotionEvent.ACTION_DOWN:
((TourMapFragment) getContext().getSupportFragmentManager().findFragmentById(R.id.FragmentContainer));
??.setScrollTouchInteraction(false);
break;
case MotionEvent.ACTION_UP:
??.setScrollTouchInteraction(true);
break;
}
return false;
return super.onInterceptTouchEvent(ev);
}
}
Так как же я получаю ссылку в TourMapFragment в '??'