我用Java以外的其他语言开发了10多年。我是Android世界的新手,但我正试图潜入。我正在尝试制作一个可拖动的列表,我找到了精彩的回购https://github.com/commonsguy/cwac-touchlist来拖放列表项。但是,当我尝试@Override DropListener接口的drop方法时,我收到一个错误。它指出: “new TouchListView.DropListener(){}类型的方法drop(int,int)必须覆盖超类方法”
我试图实现演示程序将TouchList用于我的应用程序的方式,并且我还将代码完全复制到另一个Action中,并且我得到了同样的错误。
我的代码:
package bu.homework.shoppinglist;
import android.app.ListActivity;
import android.content.Intent;
import android.database.Cursor;
import android.os.Bundle;
import android.view.ContextMenu;
import android.view.ContextMenu.ContextMenuInfo;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.widget.AdapterView.AdapterContextMenuInfo;
import android.widget.ListView;
import android.widget.SimpleCursorAdapter;
import com.commonsware.cwac.tlv.TouchListView;
public class ItemListActivity extends ListActivity {
private static final int ACTIVITY_CREATE=0;
private static final int ACTIVITY_EDIT=1;
private static final int INSERT_ID = Menu.FIRST;
private static final int DELETE_ID = Menu.FIRST + 1;
private ItemsModel mDbHelper;
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.item_list);
mDbHelper = new ItemsModel(this);
mDbHelper.open();
fillList();
TouchListView itemListView = (TouchListView) getListView();
itemListView.setDropListener(onDrop);
System.out.print("On Drop");
// itemListView.setRemoveListener(onRemove);
// registerForContextMenu(itemListView);
}
private TouchListView.DropListener onDrop = new TouchListView.DropListener() {
@Override
public void drop(int from, int to) {
System.out.print(from);
System.out.print(to);
}
};
private TouchListView.RemoveListener onRemove = new TouchListView.RemoveListener() {
public void remove(int which) {
}
};
@Override
public boolean onCreateOptionsMenu(Menu menu) {
boolean result = super.onCreateOptionsMenu(menu);
menu.add(0, INSERT_ID, 0, R.string.menu_insert);
return result;
}
@Override
public boolean onMenuItemSelected(int featureId, MenuItem item) {
switch(item.getItemId()) {
case INSERT_ID:
createItem();
return true;
}
return super.onMenuItemSelected(featureId, item);
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
switch (item.getItemId()) {
case INSERT_ID:
createItem();
return true;
}
return super.onOptionsItemSelected(item);
}
@Override
public void onCreateContextMenu(ContextMenu menu, View v,
ContextMenuInfo menuInfo) {
super.onCreateContextMenu(menu, v, menuInfo);
menu.add(0, DELETE_ID, 0, R.string.menu_delete);
}
@Override
public boolean onContextItemSelected(MenuItem item) {
switch(item.getItemId()) {
case DELETE_ID:
AdapterContextMenuInfo info = (AdapterContextMenuInfo) item.getMenuInfo();
mDbHelper.deleteItem(info.id);
fillList();
return true;
}
return super.onContextItemSelected(item);
}
@Override
protected void onListItemClick(ListView l, View v, int position, long id) {
super.onListItemClick(l, v, position, id);
Intent i = new Intent(this, ItemEditActivity.class);
i.putExtra(ItemsModel.KEY_ROWID, id);
startActivityForResult(i, ACTIVITY_EDIT);
}
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent intent) {
super.onActivityResult(requestCode, resultCode, intent);
fillList();
}
private void createItem() {
Intent i = new Intent(this, ItemEditActivity.class);
startActivityForResult(i, ACTIVITY_CREATE);
}
private void fillList() {
// Get all of the notes from the database and create the item list
Cursor itemCursor = mDbHelper.fetchAllItems();
startManagingCursor(itemCursor);
// Create an array to specify the fields we want to display in the list (only NAME)
String[] from = new String[] { ItemsModel.KEY_NAME };
// and an array of the fields we want to bind those fields to (in this case just item_row)
int[] to = new int[] { R.id.item_row };
// Now create an array adapter and set it to display using our row
SimpleCursorAdapter notes =
new SimpleCursorAdapter(this, R.layout.item_row, itemCursor, from, to);
setListAdapter(notes);
}
}
代码并不接近完整,但我的目标是将记事本的android教程功能与触摸列表结合起来。
我的问题是,我做错了什么。还有更好的方法来拖放列表。
谢谢, Chris Swenor
答案 0 :(得分:1)
您可能正在使用Java 1.5构建。在Java 1.5中,您不能将@Override
与接口方法定义一起使用。他们采用了Java 1.6。
但由于某些原因,我的掉线听众没有被触发。
除了我不是System.out.print()
的忠实粉丝之外,没有什么能比我说错了。您可以尝试使用断点或Log.w()
或其他内容来查看问题是否仅仅是在日志记录中。
答案 1 :(得分:0)
它正在抱怨,因为你试图覆盖一个不存在的方法。我认为该方法可能被称为onDrop,而不是drop - 更改它并查看它是否编译。此外,如果您正在使用eclipse,请在您的drop listener定义中单击并键入control + space,并且应该出现一个要覆盖的方法列表,我猜你会看到onDrop,而不是drop。