I know how to add a ToggleButton to ALL of the listView rows. But how do i add a ToggleButton to only ONE specific listView row?
Im populating my listView with an ArrayAdapter like so
ListView mlistView = (ListView) findViewById(R.id.listViewSetting);
mlistView.setAdapter(new ArrayAdapter<String>(this,
android.R.layout.simple_list_item_1,
new String[] {"Rate @ME App", "Feedback", "Block", "Terms of Service", "Push Notifications", "Sign Out"}));