私はRecyclerview
の下にあるCoordinatorlayout
を持っています> NestedScrollview
> ViewPager
とViewPager
には3つのフラグメントがあり、1つには画像ギャラリーがありますRecyclerview
の助け。上または下にスクロールしようとすると、まったくスクロールしません。私はすでにphotosRecycler.setNestedScrollingEnabled(false);
を設定しており、この行を削除するとすぐにスクロールが下側のみで機能し、親Nestedscrollview
を使用して上に移動しようとすると上に移動します。
私のレイアウトマネージャーは、この種のレイアウトを取得する必要があるグリッドとしてStaggeredGridも表示しています
これがNestedscrollviewの親レイアウトです
<?xml version="1.0" encoding="utf-8"?>
<androidx.coordinatorlayout.widget.CoordinatorLayout 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:background="?android:attr/colorBackground"
Android:layout_width="match_parent"
Android:layout_height="match_parent">
<com.google.Android.material.appbar.AppBarLayout
Android:layout_width="match_parent"
Android:layout_height="wrap_content" >
<com.google.Android.material.appbar.CollapsingToolbarLayout
Android:layout_width="match_parent"
Android:layout_height="match_parent"
Android:fitsSystemWindows="true"
app:expandedTitleMarginStart="48dp"
app:expandedTitleMarginEnd="64dp"
app:contentScrim="?attr/colorPrimary"
app:layout_scrollFlags="scroll|enterAlways">
<androidx.constraintlayout.widget.ConstraintLayout
Android:layout_width="match_parent"
Android:layout_height="wrap_content"
Android:background="?android:colorBackground">
<ImageView
Android:layout_width="match_parent"
Android:layout_height="500dp"
Android:src="@color/custom_transparent_colorBlack"
Android:scaleType="centerCrop"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.0"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
/>
<de.hdodenhof.circleimageview.CircleImageView
Android:layout_width="128dp"
Android:layout_height="128dp"
app:layout_constraintBottom_toBottomOf="@+id/coverPhoto"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="@+id/coverPhoto"
app:layout_constraintVertical_bias="0.44"
tools:srcCompat="@tools:sample/avatars" />
</androidx.constraintlayout.widget.ConstraintLayout>
</com.google.Android.material.appbar.CollapsingToolbarLayout>
</com.google.Android.material.appbar.AppBarLayout>
<androidx.core.widget.NestedScrollView
Android:id="@+id/up_NestedScrollView"
Android:layout_width="match_parent"
Android:layout_height="match_parent"
Android:overScrollMode="never"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
>
<RelativeLayout
Android:layout_width="match_parent"
Android:layout_height="match_parent"
Android:paddingLeft="5dp"
Android:paddingRight="5dp"
>
<com.google.Android.material.tabs.TabLayout
Android:id="@+id/tabItemes"
Android:layout_width="match_parent"
Android:layout_height="wrap_content"
app:tabGravity="fill"
app:tabPaddingBottom="0dp"
app:tabPaddingEnd="0dp"
app:tabPaddingStart="0dp"
app:tabPaddingTop="0dp"
app:tabIndicatorHeight="0dp"
app:tabMode="fixed"
app:tabTextColor="@color/black"
app:tabSelectedTextColor="@color/primary"
app:tabIndicatorColor="@color/primary_light">
<com.google.Android.material.tabs.TabItem
Android:layout_width="wrap_content"
Android:layout_height="wrap_content"
Android:text="About" />
<com.google.Android.material.tabs.TabItem
Android:layout_width="wrap_content"
Android:layout_height="wrap_content"
Android:text="Media" />
<com.google.Android.material.tabs.TabItem
Android:layout_width="wrap_content"
Android:layout_height="wrap_content"
Android:text="Con" />
</com.google.Android.material.tabs.TabLayout>
<androidx.viewpager.widget.ViewPager
Android:layout_below="@id/tabItemes"
Android:layout_width="match_parent"
Android:layout_height="match_parent" />
</RelativeLayout>
</androidx.core.widget.NestedScrollView>
</androidx.coordinatorlayout.widget.CoordinatorLayout>
画像ギャラリーのフラグメント
public class UserPhoto_fragment extends Fragment {
public static final String TAG="### USER PHOTO ####";
RecyclerView photosRecycler;
fetchPhoto_Adapter adapter;
StaggeredGridLayoutManager layoutManager;
ArrayList<String> ImageList;
@Nullable
@Override
public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, Bundle savedInstanceState) {
View view=inflater.inflate(R.layout.userprofile_photos,container,false);
setRetainInstance(true);
photosRecycler=view.findViewById(R.id.userPhotos_recycler);
layoutManager= new StaggeredGridLayoutManager(2,StaggeredGridLayoutManager.VERTICAL);
layoutManager.setGapStrategy(StaggeredGridLayoutManager.GAP_HANDLING_NONE);
ImageList=new ArrayList<>();
SpacesItemDecoration itemDecoration = new SpacesItemDecoration(16);
photosRecycler.addItemDecoration(itemDecoration);
photosRecycler.setLayoutManager(layoutManager);
photosRecycler.setHasFixedSize(true);
photosRecycler.setNestedScrollingEnabled(false);
return view;
}
@Override
public void onResume() {
super.onResume();
Log.d(TAG, "onResume: User Photo Fragment "+getView()+ ImageList.size() );
if (ImageList.size()==0){
new fetch_photo().execute();
}
}
public class fetchPhoto_Adapter extends RecyclerView.Adapter<fetchPhoto_Adapter.ViewHolder>{
@NonNull
@Override
public fetchPhoto_Adapter.ViewHolder onCreateViewHolder(ViewGroup viewGroup, int i) {
LayoutInflater inflater= (LayoutInflater) viewGroup.getContext().getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View v = inflater.inflate(R.layout.userprofile_photogallery,viewGroup,false);
return new ViewHolder(v);
}
@Override
public void onBindViewHolder(fetchPhoto_Adapter.ViewHolder viewHolder, int i) {
Glide.with(getActivity()).load(ImageList.get(i)).apply(new RequestOptions().centerCrop()).into(viewHolder.image);
}
@Override
public int getItemCount() {
if (ImageList!=null && ImageList.size()>0){
return ImageList.size();
}else {
return 0;
}
}
public class ViewHolder extends RecyclerView.ViewHolder {
ImageView image;
public ViewHolder(View itemView) {
super(itemView);
image = itemView.findViewById(R.id.UserProfile_photoThumb);
}
}
}
}
画像ギャラリーのレイアウトファイル
<?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"
Android:layout_marginTop="20dp"
Android:layout_width="match_parent"
Android:layout_height="match_parent">
<androidx.recyclerview.widget.RecyclerView
Android:id="@+id/userPhotos_recycler"
Android:layout_width="match_parent"
Android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
Android:scrollbars="vertical">
</androidx.recyclerview.widget.RecyclerView>
</RelativeLayout>
このコードで2つの問題に直面しています
これらの問題を解決するために私を助けてください。ありがとう
CoordinatorLayout内に直接あるのはviewPagerであり、recyclerViewではないため、viewPagerには、recyclerviewではなくscrolling_layout_behaviourが必要です。
<androidx.viewpager.widget.ViewPager
Android:layout_below="@id/tabItemes"
Android:layout_width="match_parent"
Android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
このようにStaggeredGridLayoutManagerを設定します
StaggeredGridLayoutManager staggeredGridLayoutManager = new StaggeredGridLayoutManager(3, LinearLayoutManager.VERTICAL);
recyclerView.setLayoutManager(staggeredGridLayoutManager); // set LayoutManager to RecyclerView
StaggeredGridLayoutが機能するためには、imageViewスケールタイプをcropCenterに設定してはならず、imageView要素を含むcardViewの高さはコンテンツをラップするように設定し、固定しないでください。
<Android.support.v7.widget.cardview
Android:layout_height="wrap_content"
Android:layout_width="match_parent"
app:cardcornerradius="4dp"
app:cardusecompatpadding="true">
<linearlayout
Android:background="@color/colorPrimary"
Android:layout_height="match_parent"
Android:layout_width="match_parent"
Android:orientation="vertical">
<imageview
Android:adjustviewbounds="true"
Android:id="@+id/placePic"
Android:layout_height="match_parent"
Android:layout_width="match_parent"
Android:scaletype="fitXY" />
</linearlayout>
</Android.support.v7.widget.cardview>
私は同じ要件に直面しましたが、別の方法で解決しました、
app:layout_behavior="@string/appbar_scrolling_view_behavior"
この属性をCoordinatorLayoutのメインコンテンツレイアウトに設定します。
<string name="appbar_scrolling_view_behavior" translatable="false">com.google.Android.material.appbar.AppBarLayout$ScrollingViewBehavior</string>
レイアウトは次のようになります
<androidx.coordinatorlayout.widget.CoordinatorLayout >
<com.google.Android.material.appbar.AppBarLayout>
<androidx.appcompat.widget.Toolbar>
<androidx.constraintlayout.widget.ConstraintLayout>
<ImageView />
//Header content
</androidx.constraintlayout.widget.ConstraintLayout>
</androidx.appcompat.widget.Toolbar>
<com.google.Android.material.tabs.TabLayout />
</com.google.Android.material.appbar.AppBarLayout>
<LinearLayout
app:layout_behavior="@string/appbar_scrolling_view_behavior">
<androidx.viewpager.widget.ViewPager
Android:id="@+id/viewPager"
Android:layout_width="match_parent"
Android:layout_height="wrap_content"
Android:background="@color/light_gray">
</androidx.viewpager.widget.ViewPager>
</LinearLayout>
</androidx.coordinatorlayout.widget.CoordinatorLayout>
また、メインフラグメントの親ビューは、app:layout_behavior
注:フラグメントには線形レイアウトが含まれているため、wrap_content
リサイクラービューを使用している場合は、フラグメント内でフラット化する必要があります