I need to put button into list view to go to another view.
my button: AddTime = (Button) findViewById(R.id.Add_Time);
i tryd to get it working using:
public class myclass extends ListActivity implements OnClickListener {
and i have public void onClick(View arg0) { }
and i need it to go to another place i think using this Intent intent = new Intent(this, myclass.class); startActivity(intent);
how to i get this all working in listview?