我正在尝试使用OnItemLongClickListener()设置listView,这将打开一个带有自定义布局的警告对话框。然后,我希望布局有两个按钮,一个用于打开另一个活动以编辑SQLite DB中的条目,另一个用于删除条目。我的onItemLongClickListener()工作,我可以打开一个自定义布局,但我无法弄清楚如何在单击按钮后关闭对话框,或执行我想要的方法。
我的ListViewItemLongClick():
private void listViewItemLongClick(){
final ListView myList = (ListView) findViewById(R.id.resourcesList);
myList.setOnItemLongClickListener(new AdapterView.OnItemLongClickListener() {
@Override
public boolean onItemLongClick(AdapterView<?> parent, View view, int position, long id) {
Id = id;
AlertDialog.Builder dialogBuilder = new AlertDialog.Builder(MainActivity.this);
// ...Irrelevant code for customizing the buttons and title
LayoutInflater inflater = getLayoutInflater();
View dialogView = inflater.inflate(R.layout.alert_layout, null);
dialogBuilder.setView(dialogView);
AlertDialog alertDialog = dialogBuilder.create();
alertDialog.show();
return true;
}
});
}
我的自定义提醒布局:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent">
<Button
android:id="@+id/Edit"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:onClick="edit"
android:text="Edit" />
<Button
android:id="@+id/delete"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:onClick="delete"
android:text="Delete" />
</LinearLayout>
任何帮助都会非常感激,我仍然是Android编程的新手。
干杯!
答案 0 :(得分:1)
使用我的解决方案,您不需要XML文件。当然,您可以使用它来添加EditText作为示例,并使用ToString()
但是对于你的情况,试试这个
EditText ed = (EditText)dialog.findViewById(R.id.dialog_get_name_ed);