Skip to content

Instantly share code, notes, and snippets.

@hixguru
Last active November 1, 2019 04:28
Show Gist options
  • Save hixguru/228f0f719e9daee0f5b772595fef3d6c to your computer and use it in GitHub Desktop.
Save hixguru/228f0f719e9daee0f5b772595fef3d6c to your computer and use it in GitHub Desktop.
itemView.tvTitle.text = "set text by itemView"
containerView?.tvTitle?.text = "set text by containerView"
View var10000 = this.itemView;
TextView var7 = (TextView)var10000.findViewById(id.tvTitle);
var7.setText((CharSequence)"set text by itemView");
var10000 = this.getContainerView();
if (var10000 != null) {
var7 = (TextView)var10000.findViewById(id.tvTitle);
if (var7 != null) {
var7.setText((CharSequence)"set text by containerView");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment