RecyclerView mRecyclerView;
MyAdapter myAdapter;
ImageButton floatButton;
DbHelper dbHelper;
ArrayList<Information> data;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
floatButton = (ImageButton) findViewById(R.id.imageButton);
floatButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Intent intent = new Intent(MainActivity.this, AddDetailPage.class);
MainActivity.this.startActivity(intent);
}
});
dbHelper = new DbHelper(this);
data = new ArrayList<>();
mRecyclerView = (RecyclerView) findViewById(R.id.recyclerView);
myAdapter = new MyAdapter(this, showData());
mRecyclerView.setAdapter(myAdapter);
mRecyclerView.setLayoutManager(new LinearLayoutManager(this));
ItemTouchHelper helper = new ItemTouchHelper(createHelperCallback());
helper.attachToRecyclerView(mRecyclerView);
}
private ItemTouchHelper.Callback createHelperCallback() {
ItemTouchHelper.SimpleCallback simpleItemCallback = new ItemTouchHelper.SimpleCallback(ItemTouchHelper.UP | ItemTouchHelper.DOWN, ItemTouchHelper.LEFT |
ItemTouchHelper.RIGHT) {
@Override
public boolean onMove(RecyclerView recyclerView, RecyclerView.ViewHolder viewHolder, RecyclerView.ViewHolder target) {
return false;
}
@Override
public void onSwiped(RecyclerView.ViewHolder viewHolder, int direction) {
deleteItem(viewHolder.getAdapterPosition());
}
};
return simpleItemCallback;
}
public ArrayList<Information> showData() {
Cursor res = dbHelper.showData();
while (res.moveToNext()) {
Information information = new Information();
information.ID = res.getString(0);
information.first = res.getString(0);
information.second = res.getString(2);
information.detail = res.getString(3);
data.add(information);
}
return data;
}
public void deleteItem(int position){
DbHelper dbHelper = new DbHelper(this);
dbHelper.delete(position);
myAdapter.notifyItemRemoved(position);
myAdapter.delete(position);
}
private MainActivity mainactivity;
private ArrayList<Information> data;
private LayoutInflater layoutInflater;
public MyAdapter(MainActivity mainActivity, ArrayList<Information> information) {
this.mainactivity = mainActivity;
this.data = information;
layoutInflater = LayoutInflater.from(mainActivity);
notifyDataSetChanged();
}
@Override
public MyAdapter.ViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
View view = layoutInflater.inflate(R.layout.list_item, parent, false);
return new ViewHolder(view, data);
}
@Override
public void onBindViewHolder(MyAdapter.ViewHolder holder, int position) {
holder.first.setText(data.get(position).first);
holder.second.setText(data.get(position).second);
holder.detail.setText(data.get(position).detail);
}
@Override
public int getItemCount() {
return data.size();
}
public class ViewHolder extends RecyclerView.ViewHolder{
TextView first, second, detail;
ArrayList<Information> info;
public ViewHolder(View itemView, ArrayList<Information> data) {
super(itemView);
this.info = data;
first = (TextView) itemView.findViewById(R.id.firstText);
second = (TextView) itemView.findViewById(R.id.secondText);
detail = (TextView) itemView.findViewById(R.id.detail);
}
}
public void delete(int x){
data.remove(x);
notifyDataSetChanged();
}
公共类DbHelper扩展了SQLiteOpenHelper{
public static final String DATABASE_NAME = "students.db";
public static final String TABLE_NAME = "student_table";
public static final String ID = "_id";
public static final String FIRST_NAME = "first_name";
public static final String SECOND_NAME = "second_name";
public static final String DETAIL = "detail";
public DbHelper(Context context) {
super(context, DATABASE_NAME, null, 1);
}
@Override
public void onCreate(SQLiteDatabase db) {
db.execSQL("CREATE TABLE " + TABLE_NAME + "( " + ID + " INTEGER PRIMARY KEY AUTOINCREMENT ," + FIRST_NAME + " TEXT ," + SECOND_NAME + " TEXT ," + DETAIL + " TEXT );");
}
@Override
public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
db.execSQL("DROP TABLE IF EXISTS " + TABLE_NAME);
onCreate(db);
}
public boolean insertData(String first, String second, String detail) {
SQLiteDatabase db = this.getWritableDatabase();
ContentValues contentValues = new ContentValues();
contentValues.put(FIRST_NAME, first);
contentValues.put(SECOND_NAME, second);
contentValues.put(DETAIL, detail);
long x = db.insert(TABLE_NAME, null, contentValues);
if (x == -1) {
return false;
} else {
return true;
}
}
public Cursor showData() {
SQLiteDatabase db = this.getWritableDatabase();
Cursor res = db.rawQuery("SELECT * FROM " + TABLE_NAME, null);
return res;
}
public void delete(int x) {
int y = x + 1;
SQLiteDatabase db = this.getWritableDatabase();
db.delete(TABLE_NAME, ID + "=" + y, null);
}
}
在适配器中为特定对象的get id创建此方法,并将该id传递给DbHelper类的delete the fuction。
int getId(int position){
return data.get(position).ID;
}
并避免直接访问类的成员。相反,您可以使用getter和setter方法。
为了在添加新数据后更新RecycerView,您可以在适配器中相应的insert方法中调用notifyDataSetChanged()。
void addItem(Informationn infoObj){
data.add(infoObj);
notifyDataSetChanged();
}
我想在RecycerView中对项目进行排序。我的用户名是20ABC1、20ABC2、…、20ABC10、…等等。 我尝试了相关问题的答案,其中一个是: 谢谢:)
问题内容: 我知道Set和List之间的区别(允许唯一与重复,而不是有序/有序等)。我正在寻找的是一个使元素保持有序的集合(这很容易),但是我还需要能够恢复插入元素的索引。因此,如果我插入四个元素,那么我希望能够知道其中一个元素的插入顺序。 因此,在任何给定时刻,我都可以检查是否已添加字符串,并获取该字符串在集合中的索引。是否有这样的事情,或者我需要自己实施? 问题答案: 类中的一个小型静态自定义
问题内容: 如何获得当前Eclipse项目的名称?我在GMF视图中,使用弹出菜单ist的某些子菜单时需要项目名称。 问题答案: 这GMF类有一个直截了当的回答,如果你有机会到ResourcesPlugin名称: 通用答案(来自可能过时的代码)可能类似于(如果您打开了编辑器): 如果没有打开编辑器:
在recyclerView中获取已点击项目的位置,我在recyclerView中创建cardview和链接 我想获取位置,将开关盒设置为每个卡视图的意向活动 当我点击card view I时,他会打开另一个页面,当你点击card view 2时,他会打开另一个页面。 看看我的密码 在recyclerView中获取已点击项目的位置,我在recyclerView中创建cardview和链接 我想获取位
当我滚动RecycerView时,它正在复制项,并且我已经调用。 所以,可能我在错误的地方调用了数据集更新,但我找不到它是如何工作的。 下面是一些代码:
Project的构建没有任何错误,但是当我进入exploper并查找文件夹时,它没有生成。我尝试清理和构建,无效缓存和重新启动,但它不起作用。如何获取r.java文件? 这是构建日志 我在下面提到了这样的线程,并尝试了一切,但没有任何工作。 这个有什么已知的bug吗?