gpt4 book ai didi

android - RecyclerView inside nestedscrollview with bottom sheet behavior

转载 作者:行者123 更新时间:2023-11-29 01:03:50 25 4
gpt4 key购买 nike

我正在制作一个应用程序来显示不同用户的帖子 Activity ,例如 facebook。我制作了 postList Activity,其中将显示用户名、他的帖子图片和帖子文本。还想在我的应用程序中实现点赞和评论功能。在评论 TextView 中,bottomsheet 将显示不同用户的评论列表。

问题是我使用了具有 bottomsheet 行为的 nestedscrollview。在嵌套 ScrollView 中,有回收器 View 。

这是我的 bottomsheet 的 xml 布局

<android.support.v4.widget.NestedScrollView 
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/bottom_sheet1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@android:color/darker_gray"
android:fillViewport="true"
android:orientation="vertical"
app:behavior_hideable="true"
app:behavior_peekHeight="80dp"
app:layout_behavior="android.support.design.widget.BottomSheetBehavior">


<android.support.v7.widget.RecyclerView
android:id="@+id/commentList"
android:layout_width="match_parent"
android:layout_height="match_parent" />


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

这是帖子列表 xml

<android.support.design.widget.CoordinatorLayout 
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/main_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">

<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fillViewport="true">

<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_margin="16dp">

<android.support.v7.widget.RecyclerView
android:id="@+id/post_list"
android:layout_width="match_parent"
android:layout_height="wrap_content" />

<android.support.design.widget.FloatingActionButton
android:id="@+id/addNewPost"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentRight="true" />
</RelativeLayout>
</ScrollView>

<include layout="@layout/bottom_sheet" />

这是 poSTList 适配器

public class CustomAdapter extends RecyclerView.Adapter<ViewHolder> {

NestedScrollView bottom_sheet;
CoordinatorLayout mainLayout;

private BottomSheetBehavior mBottomSheetBehavior;

public CustomAdapter(Context context, ArrayList<Post> posts,NestedScrollView
bottom_sheet,CoordinatorLayout mainLayout) {
this.posts = posts;
this.context = context;
this.bottom_sheet=bottom_sheet;
this.mainLayout=mainLayout;
}

@Override
public ViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
View view = LayoutInflater.from(parent.getContext()).inflate(R.layout.post_layout, parent, false);
ViewHolder viewHolder = new ViewHolder(view);
return viewHolder;
}

@Override
public void onBindViewHolder(final ViewHolder holder, int position) {

mBottomSheetBehavior = BottomSheetBehavior.from(bottom_sheet);

mBottomSheetBehavior.setBottomSheetCallback(new BottomSheetBehavior.BottomSheetCallback() {
@Override
public void onStateChanged(@NonNull View bottomSheet, int newState) {
switch (newState) {
case BottomSheetBehavior.STATE_HIDDEN:
break;
case BottomSheetBehavior.STATE_EXPANDED: {
}
break;
case BottomSheetBehavior.STATE_COLLAPSED: {
}
break;
case BottomSheetBehavior.STATE_DRAGGING:
break;
case BottomSheetBehavior.STATE_SETTLING:
break;
}
}
@Override
public void onSlide(@NonNull View bottomSheet, float slideOffset) {

}
});

holder.comment.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
if (mBottomSheetBehavior.getState() != BottomSheetBehavior.STATE_EXPANDED) {
mBottomSheetBehavior.setState(BottomSheetBehavior.STATE_EXPANDED);
} else {
mBottomSheetBehavior.setState(BottomSheetBehavior.STATE_COLLAPSED);
}
}
});


}
@Override
public int getItemCount() {
return posts.size();
}

这是评论的适配器

public class CommentAdapter extends RecyclerView.Adapter<CommentViewHolder> {

Context context;

public CommentAdapter(Context context,ArrayList<Comment> comments) {
this.comments = comments;
this.context=context;
}

@Override
public CommentViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
View view = LayoutInflater.from(parent.getContext()).inflate(R.layout.comment_layout, parent, false);
CommentViewHolder viewHolder = new CommentViewHolder(view);
return viewHolder;
}

@Override
public void onBindViewHolder(CommentViewHolder holder, int position) {

firebaseDatabase = FirebaseDatabase.getInstance();
commentReference = firebaseDatabase.getReference().child("Comments");
mAuth = FirebaseAuth.getInstance();
uId = mAuth.getCurrentUser().getUid();

final Comment comment = comments.get(position);

holder.commentUName.setText("Numrah");
holder.commentText.setText("hello");

holder.addCommentBtn.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
Toast.makeText(context, "comment", Toast.LENGTH_SHORT).show();
}
});

}

@Override
public int getItemCount() {
return comments.size();
}
}

PostList Activity

公共(public)类 PostList 扩展 AppCompatActivity {

RecyclerView recyclerView;
ArrayList<Post> posts;
CustomAdapter customAdapter;
FloatingActionButton addPost;
FirebaseDatabase firebaseDatabase;
DatabaseReference postReference;
DatabaseReference likeReference;
DatabaseReference commentReference;
NestedScrollView bottomSheet;
CoordinatorLayout mainLayout;
private BottomSheetBehavior mBottomSheetBehavior;
RecyclerView commentRecyclerView;
ArrayList<Comment> comments;
CommentAdapter commentAdapter;

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_post_list);

bottomSheet = (NestedScrollView) findViewById(R.id.bottom_sheet1);
mainLayout = (CoordinatorLayout) findViewById(R.id.main_layout);
commentRecyclerView=bottomSheet.findViewById(R.id.commentList);
comments = new ArrayList<>();
RecyclerView.LayoutManager layoutManager = new LinearLayoutManager(this);
//layoutManager.setAutoMeasureEnabled(true);
commentRecyclerView.setLayoutManager(layoutManager);
commentRecyclerView.setNestedScrollingEnabled(false);
commentAdapter = new CommentAdapter(this, comments);
commentRecyclerView.setAdapter(commentAdapter);

firebaseDatabase = FirebaseDatabase.getInstance();
postReference = firebaseDatabase.getReference("Post");
likeReference = firebaseDatabase.getReference("Likes");
commentReference = firebaseDatabase.getReference("Comments");

posts = new ArrayList<>();
addPost = (FloatingActionButton) findViewById(R.id.addNewPost);
recyclerView = (RecyclerView) findViewById(R.id.post_list);
recyclerView.setLayoutManager(new LinearLayoutManager(this));
customAdapter = new CustomAdapter(this, posts, bottomSheet, mainLayout);
recyclerView.setAdapter(customAdapter);



addPost.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
startActivity(new Intent(PostList.this, AddPost.class));

}
});

postReference.addChildEventListener(new ChildEventListener() {
@Override
public void onChildAdded(DataSnapshot dataSnapshot, String s) {

Post post = dataSnapshot.getValue(Post.class);
posts.add(post);
customAdapter.notifyDataSetChanged();
}

@Override
public void onChildChanged(DataSnapshot dataSnapshot, String s) {

Post post = dataSnapshot.getValue(Post.class);
int indexOfItem = posts.indexOf(post);
if (indexOfItem >= 0) {
posts.set(indexOfItem, post);

}
customAdapter.notifyDataSetChanged();
}

@Override
public void onChildRemoved(DataSnapshot dataSnapshot) {

}

@Override
public void onChildMoved(DataSnapshot dataSnapshot, String s) {

}

@Override
public void onCancelled(DatabaseError databaseError) {

}
});

}

@Override
public void onBackPressed() {
mBottomSheetBehavior = BottomSheetBehavior.from(bottomSheet);
if (mBottomSheetBehavior.getState() != BottomSheetBehavior.STATE_EXPANDED) {

super.onBackPressed();

} else {
mBottomSheetBehavior.setState(BottomSheetBehavior.STATE_COLLAPSED);

}
}

最佳答案

作为你的数组列表 comments为空(comments.size() 为 0) getItemCount()你的CommentAdapter正在返回 0 .因此零行将被夸大,你的 recyclerView 将是空白的。所以你的测试用例不会被执行 要执行你的测试用例,请在你的 CommentAdapter 中试试这个:-

    @Override
public int getItemCount() {
return 5; // returning static no of items
}

关于android - RecyclerView inside nestedscrollview with bottom sheet behavior,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49088655/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com