商品展示

1.首先创建一个名为“ShopShowDemo”的应用程序,设计用户交互界面。
“商品展示”程序对应的布局文件(activity_main.xml):

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/activity_main"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    tools:context="cn.edu.bzu.shopshowdemo.MainActivity">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content">

        <EditText
            android:id="@+id/etName"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:hint="商品名称"
            android:inputType="text" />

        <EditText
            android:id="@+id/etAmount"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:hint="金额"
            android:inputType="number" />

        <ImageView
            android:id="@+id/ivAdd"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:onClick="addGoods"
            android:src="@android:drawable/ic_input_add" />
    </LinearLayout>

    <ListView
        android:id="@+id/lvGoods"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />
</LinearLayout>

2.创建ListView Item布局
在res/layout目录下创建一个item.xml文件

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <TextView
        android:id="@+id/tvId"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:text="1"
        android:textSize="20sp" />

    <TextView
        android:id="@+id/tvName"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="left"
        android:layout_weight="2"
        android:text="商品名称"
        android:textSize="20sp" />

    <TextView
        android:id="@+id/tvAmount"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="left"
        android:layout_weight="2"
        android:text="金额"
        android:textSize="20sp" />

    <LinearLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:orientation="vertical">

        <ImageView
            android:id="@+id/ivUp"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:src="@android:drawable/arrow_up_float" />

        <ImageView
            android:id="@+id/ivDown"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:src="@android:drawable/arrow_down_float" />

    </LinearLayout>

    <ImageView
        android:id="@+id/ivDelete"
        android:layout_width="25dp"
        android:layout_height="25dp"
        android:src="@android:drawable/ic_menu_delete"

        />
</LinearLayout>

3.
创建一个名为dao的包,在dao包下创建名为GoodsDao的类:

package com.edu.bzu.cn.shopshowdemo.dao;
import android.content.ContentValues;
import android.content.Context;
import android.database.Cursor;
import android.database.sqlite.SQLiteDatabase;

import com.edu.bzu.cn.shopshowdemo.db.DBHelper;
import com.edu.bzu.cn.shopshowdemo.entity.Goods;

import java.util.ArrayList;
import java.util.List;

/**
 * Created by Administrator on 2017/4/28.
 */

public class GoodsDao {
    private DBHelper dbHelper;

    public GoodsDao(Context context) {
        dbHelper = new DBHelper(context, 1);
    }

    public void add(Goods goods) {
        SQLiteDatabase sqLiteDatabase = dbHelper.getWritableDatabase();
        ContentValues values = new ContentValues();
        values.put("name", goods.getName());
        values.put("amount", goods.getAmount());
        long id=sqLiteDatabase.insert("goods", null, values);
        goods.setId(id);
        sqLiteDatabase.close();
    }

    public int delete(long id) {
        SQLiteDatabase sqLiteDatabase = dbHelper.getWritableDatabase();
        int count=sqLiteDatabase.delete("goods", "_id=?", new String[]{id + ""});
        sqLiteDatabase.close();
        return count;
    }

    public int update(Goods goods) {
        SQLiteDatabase sqLiteDatabase = dbHelper.getWritableDatabase();
        ContentValues values = new ContentValues();
        values.put("name", goods.getName());
        values.put("amount", goods.getAmount());
        int count = sqLiteDatabase.update("goods", values, "_id=?", new String[]{goods.getId() + ""});

        sqLiteDatabase.close();
        return count;
    }

    public List<Goods> queryAll() {
        List<Goods> goodsList = new ArrayList<>();
        SQLiteDatabase sqLiteDatabase = dbHelper.getReadableDatabase();
        Cursor cursor = sqLiteDatabase.query("goods", null, null, null, null, null, "amount desc");
        while (cursor.moveToNext()) {
            long id = cursor.getLong(cursor.getColumnIndex("_id"));
            String name = cursor.getString(cursor.getColumnIndex("name"));
            int amount = cursor.getInt(cursor.getColumnIndex("amount"));
            Goods goods = new Goods(id,name, amount);
            goodsList.add(goods);
        }
        cursor.close();
        sqLiteDatabase.close();
        return goodsList;


    }
}

创建一个名为db的包,在db包下创建一个名为DBHelper的类:

package com.edu.bzu.cn.shopshowdemo.db;
import android.content.Context;
import android.database.sqlite.SQLiteDatabase;
import android.database.sqlite.SQLiteOpenHelper;


/**
 * Created by Administrator on 2017/4/28.
 */

public class DBHelper extends SQLiteOpenHelper {
    public static final String CREATE_GOODS="create table goods(_id integer primary key autoincrement,name varchar(20),amount integer)";
    public DBHelper(Context context, int version) {
        super(context, "goods.db", null, version);
    }

    @Override
    public void onCreate(SQLiteDatabase db) {
        db.execSQL(CREATE_GOODS);

    }

    @Override
    public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {

    }
}

在entity包下的MainActivity类中:

package com.edu.bzu.cn.shopshowdemo;

import android.content.SharedPreferences;
import android.database.sqlite.SQLiteDatabase;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.text.TextUtils;
import android.view.View;
import android.widget.EditText;
import android.widget.ListView;
import android.widget.Toast;

import com.edu.bzu.cn.shopshowdemo.dao.GoodsDao;
import com.edu.bzu.cn.shopshowdemo.entity.Goods;
import com.edu.bzu.cn.shopshowdemo.entity.GoodsAdapter;

import java.util.List;

public class MainActivity extends AppCompatActivity {
    private EditText etName;
    private EditText etAmount;
    private ListView lvGoods;
    private GoodsAdapter goodsAdapter;
    private GoodsDao goodsDao;
    private List<Goods>goodsList;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        etName=(EditText)findViewById(R.id.etName);
        etAmount=(EditText)findViewById(R.id.etAmount);
        lvGoods=(ListView)findViewById(R.id.lvGoods);
        goodsDao=new GoodsDao(this);
        goodsList=goodsDao.queryAll();
        goodsAdapter=new GoodsAdapter(this,R.layout.item,goodsList,goodsDao);
        lvGoods.setAdapter(goodsAdapter);



    }
    public void addGoods(View view){
        String name=etName.getText().toString();
        String amount=etAmount.getText().toString();
        if (TextUtils.isEmpty(name)||TextUtils.isEmpty(amount))
            return;
        Goods goods=new Goods(name,Integer.parseInt(amount));
        goodsDao.add(goods);
        goodsList.add(goods);
        goodsAdapter.notifyDataSetChanged();
        etName.setText("");
        etAmount.setText("");
        Toast.makeText(this,"添加成功",Toast.LENGTH_LONG).show();

    }
}

在entity包下创建GoodsAdapter类:

package cn.edu.bzu.shopshowdemo;

import android.content.Context;
import android.content.DialogInterface;
import android.support.annotation.NonNull;
import android.support.v7.app.AlertDialog;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ArrayAdapter;
import android.widget.ImageView;
import android.widget.TextView;

import java.util.List;

import cn.edu.bzu.shopshowdemo.dao.GoodsDao;
import cn.edu.bzu.shopshowdemo.entity.Goods;

/**
 * Created by Administrator on 2017/4/27.
 */

public class GoodsAdapter extends ArrayAdapter<Goods> {
    private int resourceId;
    private GoodsDao goodsDao;
    private List<Goods> goodsList;
    public GoodsAdapter(Context context, int resource, List<Goods> objects, GoodsDao goodsDao) {
        super(context, resource, objects);
        resourceId= resource;
        goodsList=objects;
        this.goodsDao=goodsDao;

    }

    @NonNull
    @Override
    public View getView(int position, View convertView, ViewGroup parent) {
        final Goods goods=getItem(position);
        View view=null;
        ViewHolder viewHolder;

        if (convertView==null){
            view=LayoutInflater.from(getContext()).inflate(resourceId,null);
            viewHolder=new ViewHolder();
            viewHolder.tvId=(TextView)view.findViewById(R.id.tvId);
            viewHolder.tvName=(TextView)view.findViewById(R.id.tvName);
            viewHolder.tvAmount=(TextView)view.findViewById(R.id.tvAmount);
            viewHolder.ivUp=(ImageView)view.findViewById(R.id.ivUp);
            viewHolder.ivDown=(ImageView)view.findViewById(R.id.ivDown);
            viewHolder.ivDelete=(ImageView)view.findViewById(R.id.ivDelete);
            view.setTag(viewHolder);
        }else{
            view=convertView;
            viewHolder=(ViewHolder)view.getTag();

        }
        viewHolder.tvId.setText(goods.getId()+"");
        viewHolder.tvName.setText(goods.getName());
        viewHolder.tvAmount.setText(goods.getAmount()+"");
        viewHolder.ivDelete.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
                AlertDialog.Builder builder=new AlertDialog.Builder(getContext());
                builder.setTitle("你确定要删除吗?");
                builder.setPositiveButton("yes", new DialogInterface.OnClickListener() {
                    @Override
                    public void onClick(DialogInterface dialog, int which) {
                        goodsList.remove(goods);
                        goodsDao.delete(goods.getId());
                        notifyDataSetChanged();


                    }
                });
                builder.setNegativeButton("cancel",null);
                builder.show();
            }
        });
        viewHolder.ivUp.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
                goods.setAmount(goods.getAmount()-1);
                goodsDao.update(goods);
                notifyDataSetChanged();
            }
        });

        return view;
    }
    class ViewHolder{
        TextView tvId;
        TextView tvName;

        TextView tvAmount;
        ImageView ivUp;
        ImageView ivDown;
        ImageView ivDelete;


    }
}

4.结果图
这里写图片描述
这里写图片描述
这里写图片描述
这里写图片描述

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值