What I'm trying to do is set the text of the item I click on into the myEditText. Not sure how to access the specific item in ListView though...
ListView myListView = (ListView)findViewById(R.id.myListView);
final EditText myEditText = (EditText)findViewById(R.id.myEditText);
...
myListView.setAdapter(aa);
myListView.setOnClickListener(new OnClickListener(){
public void onClick(View v){
myEditText.setText("You clicked something!");
}
});