我是安卓新手。最近开始学习。
我已经动态创建了一个 LinearLayout。我在 LinearLayout 中有以下字段: 1. 客户名称 2. 编辑按钮 3. 删除按钮。
方向是水平的。
现在我想在单击删除按钮时删除一条记录。在这种情况下如何获取行 ID,然后我可以传递给数据库以删除记录。这是代码。
user_list_view_item_row.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/bg_main"
>
<TextView android:id="@+id/txtTitle"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:gravity="center_vertical"
android:textStyle="bold"
android:textSize="50dp"
android:textColor="#FFFFFF"
android:layout_marginTop="5dp"
android:layout_marginBottom="5dp" />
<Button
android:id="@+id/userListEditButton"
style="@style/SpecialText"
android:layout_width="50dp"
android:layout_height="50dp"
android:typeface="monospace"
android:text="@string/save"
android:layout_marginTop="5dp"
android:layout_marginBottom="5dp" />
<Button
android:id="@+id/userListDeleteButton"
style="@style/SpecialText"
android:layout_width="50dp"
android:layout_height="50dp"
android:typeface="monospace"
android:text="@string/reset"
android:layout_marginTop="5dp"
android:layout_marginBottom="5dp" />
</LinearLayout>
UserAdapter.java
package com.rad.mobileshop.activities;
import java.sql.SQLException;
import android.app.Activity;
import android.content.Context;
import android.view.LayoutInflater;
import android.view.View;
import android.view.View.OnClickListener;
import android.view.ViewGroup;
import android.widget.ArrayAdapter;
import android.widget.Button;
import android.widget.TextView;
import com.rad.mobileshop.common.entities.User;
import com.rad.mobileshop.db.DBAdapter;
public class UserAdapter extends ArrayAdapter<User> {
Context context;
int layoutResourceId;
User data[] = null;
private DBAdapter mdb;
public UserAdapter(Context context, int layoutResourceId, User[] data) {
super(context, layoutResourceId, data);
this.layoutResourceId = layoutResourceId;
this.context = context;
this.data = data;
mdb = new DBAdapter(context);
}
@Override
public View getView(int position, View convertView, ViewGroup parent) {
View row = convertView;
UserHolder holder = null;
if (row == null) {
LayoutInflater inflater = ((Activity) context).getLayoutInflater();
row = inflater.inflate(layoutResourceId, parent, false);
holder = new UserHolder();
holder.txtTitle = (TextView) row.findViewById(R.id.txtTitle);
holder.editButton = (Button) row
.findViewById(R.id.userListEditButton);
holder.deleteButton = (Button) row
.findViewById(R.id.userListDeleteButton);
row.setTag(holder);
} else {
holder = (UserHolder) row.getTag();
}
User user = data[position];
holder.txtTitle.setText(user.getName());
holder.editButton.setText("Edit");
holder.deleteButton.setText("Delete");
holder.editButton.setOnClickListener(new OnClickListener() {
public void onClick(View view) {
System.out.println("hello Edit");
}
});
holder.deleteButton.setOnClickListener(new OnClickListener() {
public void onClick(View view) {
System.out.println("hello delete ");
}
});
return row;
}
private void deleteUserDetails(int userId) {
try {
mdb.open();
mdb.deleteUserDetails(userId);
} catch (SQLException e1) {
e1.printStackTrace();
}
}
static class UserHolder {
TextView txtTitle;
Button editButton;
Button deleteButton;
}
}
User.java
package com.rad.mobileshop.common.entities;
public class User {
private int id;
private String name;
private String type;
public User() {
super();
}
public User(int id, String name, String type) {
super();
this.id = id;
this.name = name;
this.type = type;
}
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
@Override
public String toString() {
return this.name ;
}
}