TextView textView = findViewById(R.id.textView); textView.setText("Hello World!");
TextView textView = findViewById(R.id.textView); textView.setTextColor(Color.BLUE); textView.setTypeface(Typeface.DEFAULT_BOLD);
TextView textView = findViewById(R.id.textView); textView.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { // do something when TextView is clicked } });This code finds the TextView with the ID "textView" and adds a click listener to it. When the TextView is clicked, the code inside the onClick() method will be executed. The package library for Android.Widget.TextView is android.widget.