4z7l / gitalk

Gitalk 블로그 댓글을 위한 레포
0 stars 0 forks source link

[Android Java] RecyclerView를 사용하여 목록 만들기 - HERSTORY #52

Open 4z7l opened 3 years ago

4z7l commented 3 years ago

https://4z7l.github.io/2020/09/12/recyclerview.html

미리보기개요RecyclerView는 ListView의 개선판이다. 목록의 뷰는 ViewHolder 로 표현되며 각 ViewHolder 는 View를 사용하여 각 항목을 표시하는 역할을 한다. ViewHolder 객체는 Adapter 에서 관리하며 Adapter 는 필요에 따라 Vi...

SteadyKim commented 2 years ago

코드 그대로 복붙하면 'ViewHolder()' cannot be applied to '(android.view.View)' There is no default constructor available in 'androidx.recyclerview.widget.RecyclerView.ViewHolder' Unexpected token
Call to 'super()' must be first statement in constructor body

이런 오류 뜹니다.

SteadyKim commented 2 years ago

이 코드 안되요

SteadyKim commented 2 years ago

public class ViewHolder extends RecyclerView.ViewHolder{ ImageView profile; TextView name; TextView message;

    public ViewHolder(@NonNull View itemView) {
        super(itemView);

        profile = itemView.findViewById(R.id.profile);
        name = itemView.findViewById(R.id.name);
        message = itemView.findViewById(R.id.message);
    }

이거로 수정해야함요

4z7l commented 2 years ago

@codekim97 풀복붙하면 잘 되네요. 복붙하는 과정에서 import 잘못하셨다던지 실수가 있으셨던 것 같습니다.

SteadyKim commented 2 years ago

넷 감사합니다

2021년 11월 17일 (수) 오후 6:45, Seulgi Kim @.***>님이 작성:

@codekim97 https://github.com/codekim97 풀복붙하면 잘 되네요. 복붙하는 과정에서 import 잘못하셨다던지 실수가 있으셨던 것 같습니다.

— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/4z7l/gitalk/issues/52#issuecomment-971408012, or unsubscribe https://github.com/notifications/unsubscribe-auth/AVFE4FLUHFIB57VD5HEFNATUMN2TRANCNFSM5E4Z4HOQ . Triage notifications on the go with GitHub Mobile for iOS https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675 or Android https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub.

kjw5263 commented 2 years ago

덕분에 코드 수정해서 정상작동 합니다 감사합니다 ^^

tororae commented 9 months ago

정말.. 정말 감사해여!!