use of com.odysee.app.model.lbryinc.Reward in project odysee-android by OdyseeTeam.
the class RewardListAdapter method addCustomReward.
private void addCustomReward() {
Reward custom = new Reward();
custom.setCustom(true);
custom.setRewardTitle(context.getString(R.string.custom_reward_title));
custom.setRewardDescription(context.getString(R.string.custom_reward_description));
items.add(custom);
notifyItemInserted(items.indexOf(custom));
}
Aggregations