제가 아직 기본 적인  개념이 부족한지라 어려움이 많네요 ㅠㅠㅠㅠ
리스트를 불러와서 버튼을 하나생성후 이벤트를 발생하려고 합니다.
문제는 리스트는 아래와 같이 불러와지는데 버튼이 생성되질 않터라구요...ㅜㅜ
혹시  ListActivity에서 버튼이벤트처리하는 예제가 있을까요?
고수님들 답변좀 (_ _);


public class M_SaveList extends ListActivity
{
 
  @Override
     public void onCreate(Bundle savedInstanceState)
     {
         super.onCreate(savedInstanceState);
         setContentView(R.layout.save_list);
         String[] mStrings = new String[] {"Item 1", "Item 2", "Item 3", "Item 4", "Item 5", "Item 6"};     
         this.setListAdapter(new ArrayAdapter(this, android.R.layout.simple_list_item_1, mStrings));     
         Button save_del = (Button)findViewById(R.id.save_del);  
         save_del.setOnClickListener(new Button.OnClickListener()
      {
    public void onClick(View v)
    {
      finish();
    }
      });
     }
}


xml 입니다

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
  xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content">
 
<TextView android:id="@+id/save_view"
 android:layout_width="fill_parent"
 android:layout_height="fill_parent"/> 
 
<ListView android:id="@android:id/list"
  android:layout_height="wrap_content"
  android:layout_width="fill_parent"/>  
 
<Button android:id="@+id/save_del"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:layout_gravity="right"
  android:text="삭제" />
</LinearLayout>