Closed MS893 closed 5 years ago
@MS893 Thank you for use it I'm already working on it. You can find the progress here https://github.com/u3shadow/RemoveButterKnife/projects/1 Hope you have a nice day!
Yes! Thank you... +++++++++
Le jeu. 20 déc. 2018 à 02:09, u3shadow notifications@github.com a écrit :
@MS893 https://github.com/MS893 Thank you for use it I'm already working on it. You can find the progress here https://github.com/u3shadow/RemoveButterKnife/projects/1 Hope you have a nice day!
— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/u3shadow/RemoveButterKnife/issues/15#issuecomment-448817774, or mute the thread https://github.com/notifications/unsubscribe-auth/ALlJqFoyKApsd0DgWc7YWcXf5BQWQSDxks5u6uNAgaJpZM4ZaAW_ .
@MS893 hi, i have add this viewholder support to the plugin, you will soon recevie update notice in android studio. have a nice day!
Thank you my friend. Best regards Christian
Le lun. 24 déc. 2018 à 08:27, u3shadow notifications@github.com a écrit :
@MS893 https://github.com/MS893 hi, i have add this viewholder support to the plugin, you will soon recevie update notice in android studio. have a nice day!
— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/u3shadow/RemoveButterKnife/issues/15#issuecomment-449696823, or mute the thread https://github.com/notifications/unsubscribe-auth/ALlJqM1bKQZ0IB_hOzy2obcm6G77PkPmks5u8IHtgaJpZM4ZaAW_ .
Thank you for the plugin, it helps me . I have noticed just one problem.
Applying the plugin on this code :
public class StockUpdateViewHolder extends RecyclerView.ViewHolder { @BindView(R.id.stock_item_symbol) TextView stockSymbol;
StockUpdateViewHolder(View v) { super(v); ButterKnife.bind(this, v); }
Makes that :
public class StockUpdateViewHolder extends RecyclerView.ViewHolder { TextView stockSymbol;
StockUpdateViewHolder(View v) { super(v); }
Instead of :
public class StockUpdateViewHolder extends RecyclerView.ViewHolder { TextView stockSymbol;
StockUpdateViewHolder(View v) { super(v); stockSymbol = v.findViewById(R.id.stock_item_symbol); }