0

有人知道为什么ListActivity不起作用,当我将其更改为 Activity 基类时,只需稍作更改即可工作,但onClick()方法仍然不起作用。我只想将一些字符串放入列表中......这是代码:

public class TestDataBaseActivity extends Activity implements OnClickListener {
private CommentsDataSource datasource;
ListView m_list;

 @Override
 public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    datasource = new CommentsDataSource(this);
    datasource.open();

    List<Comment> values = datasource.getAllComments();
    m_list = (ListView) findViewById(R.id.listView1);
    // Use the SimpleCursorAdapter to show the
    // elements in a ListView
    ArrayAdapter<Comment> adapter = new ArrayAdapter<Comment>(this,
            android.R.layout.simple_list_item_1, values);
    m_list.setAdapter(adapter);

    Button add = (Button)findViewById(R.id.button_add);
    Button delete = (Button)findViewById(R.id.button_delete);

    add.setOnClickListener(this);
    delete.setOnClickListener(this);

}

// Will be called via the onClick attribute
// of the buttons in main.xml
@Override
public void onClick(View view) {
    @SuppressWarnings("unchecked")
    ArrayAdapter<Comment> adapter = (ArrayAdapter<Comment>) m_list.getAdapter();
    Comment comment = null;
    switch (view.getId()) {
        case R.id.button_add:
            String[] comments = new String[] {
                    "Cool", "Very nice", "Hate it"
            };
            int nextInt = new Random().nextInt(3);
            // Save the new comment to the database
            comment = datasource.createComment(comments[nextInt]);
            adapter.add(comment);
            break;
        case R.id.button_delete:
            if (m_list.getAdapter().getCount() > 0) {
                comment = (Comment) m_list.getAdapter().getItem(0);
                datasource.deleteComment(comment);
                adapter.remove(comment);
            }
            break;
    }
    adapter.notifyDataSetChanged();
}

@Override
protected void onResume() {
    datasource.open();
    super.onResume();
}

@Override
protected void onPause() {
    datasource.close();
    super.onPause();
}

}

这是 XML:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".TestDataBaseActivity" >

<Button
    android:id="@+id/button_add"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="@string/add_new" />

<Button
    android:id="@+id/button_delete"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_toRightOf="@id/button_add"
    android:text="@string/delete_first" />

<ListView
    android:id="@+id/listView1"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:layout_below="@id/button_add"
    android:padding="15dp" >

</ListView>

</RelativeLayout>

我现在编辑以扩展 Activity,现在“仅”onClick() 不起作用......提前致谢!

4

5 回答 5

1

由于您正在扩展,因此ListActivity您需要一个Listviewwithandroid:id="@android:id/list".

如果你想使用@+id/lst_id那么不要扩展ListActivity,只是扩展Activity。

并且每当您使用 Listview 时,您都需要实现OnItemClickListenernot OnClickListener

并覆盖默认OnItemClick方法

@Override
    public void onItemClick(AdapterView<?> arg0, View arg1, int arg2, long arg3) {
        // TODO Auto-generated method stub

    }
于 2013-10-01T04:19:36.700 回答
1

对于 ListActivity,您应该改写onListItemClick()

@Override
protected void onListItemClick(ListView lv, View v, int position, long id){


}
于 2013-09-30T11:30:01.647 回答
0

你应该实现 OnClickListener

public class TestDatabaseActivity extends ListActivity implements
    OnClickListener{
于 2013-09-30T11:20:20.207 回答
0

尝试以下代码一个简单的列表活动

public class MainActivity extends ListActivity implements OnItemClickListener {

ListView listView;
static final String[] SPORTS = {"Shuttle Badminton", "Tennis", "FootBall",
    "Basket Ball","Table Tennis", "Chess","Hockey"};
@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    listView = getListView();

    //setting adapter
    listView.setAdapter(new ArrayAdapter<String>(getApplicationContext(),R.layout.list_item,SPORTS));
    listView.setOnItemClickListener(this);
}

@Override
public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
    // TODO Auto-generated method stub
    TextView tv = (TextView)view.findViewById(R.id.text1);
    Toast.makeText(getApplicationContext(),"Position is: "+position,Toast.LENGTH_SHORT).show();
    Toast.makeText(getApplicationContext(),"Text is: "+tv.getText().toString(),Toast.LENGTH_SHORT).show();
}
}

here list_item is an xml having following code
<?xml version="1.0" encoding="utf-8"?>
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/text1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:textColor="@android:color/black"
android:padding="10dp" />

将此代码用于列表活动并根据您的需要修改行 xml。希望这可以帮助..

于 2013-09-30T12:43:01.793 回答
0

这就是困扰你的地方:

ArrayAdapter<Comment> adapter = (ArrayAdapter<Comment>) m_list.getAdapter();

而是为您的适配器构建一个全局对象。(在 onCreate() 之前声明它)

于 2014-04-19T05:31:31.163 回答