-
Notifications
You must be signed in to change notification settings - Fork 34
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
記事画面のコメント下に広告を仕込んでみましょう #29
Comments
記事画面には記事とコメントが表示されています。 step1: RecyclerViewを知る CommentAdapterがどのようにコメントのデータとViewを紐付けているかを見てみましょう。 step2: ViewHolderを追加する まず、 次にonCreateViewHolderとgetItemViewTypeを修正します。 onCreateViewHolderではviewTypeが引数として渡されますので、対応したViewHolderを返すようにします。 getItemViewTypeでは、viewTypeを返すロジックを書きます。 コメントサイズよりもフッターの分1つデータが増えています。 RecyclerViewだけで完結させて新しいViewを表示できたか確認しましょう。 step3[extra]: ViewHolderでなくViewModelを定義します。 |
DroidKaigi#29 記事画面のコメント下に広告を仕込んでみましょう
記事画面を最後までスクロールしたときに、ダミーの広告を表示します。フッター要素としてアイテムを追加しましょう。
The text was updated successfully, but these errors were encountered: