TextView textView = findViewById(R.id.myTextView); textView.setTag("myTag"); String tag = (String) textView.getTag();
class MyCustomClass { String name; int age; } Button button = findViewById(R.id.myButton); MyCustomClass myCustomObject = new MyCustomClass(); myCustomObject.name = "John"; myCustomObject.age = 30; button.setTag(myCustomObject); MyCustomClass tag = (MyCustomClass) button.getTag();
ImageView imageView = findViewById(R.id.myImageView); imageView.setTag(42); int tag = (int) imageView.getTag();