skip to Main Content

Android Studio – How do I change the color texts in a listview android studio using JAVA?

I need using JAVA, change colors of all textviews from LISTVIEW. MainActivity.java: public class MainActivity extends AppCompatActivity { String[] programName = {"ex1", "ex2", "ex3"} protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); lvProgram = findViewById(R.id.listView); ProgramAdapter programAdapter = new ProgramAdapter(this, programName);…

VIEW QUESTION
Back To Top
Search