饿了么购物车

网络请求权限别忘了****和图片加载

效果图## 标题

在这里插入图片描述

需要加入的依赖

    implementation 'com.google.code.gson:gson:2.8.5'
    implementation 'com.android.support:recyclerview-v7:28.0.0'
    implementation 'com.squareup.okhttp3:okhttp:3.12.0'
    implementation 'com.github.bumptech.glide:glide:4.8.0'

主布局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"
    android:orientation="vertical">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_weight="1"
        android:orientation="horizontal">
        <android.support.v7.widget.RecyclerView
            android:id="@+id/left_recycler"
            android:layout_width="100dp"
            android:layout_height="match_parent"
            android:background="@color/grayblack">

        </android.support.v7.widget.RecyclerView>
        <android.support.v7.widget.RecyclerView
            android:id="@+id/right_recycler"
            android:layout_width="match_parent"
            android:layout_height="match_parent">

        </android.support.v7.widget.RecyclerView>
    </LinearLayout>

    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="80dp">

        <ImageView
            android:id="@+id/shop_car_image"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerVertical="true"
            android:layout_marginLeft="10dp"
            android:src="@drawable/gouwuc_r" />
        <TextView
            android:id="@+id/goods_sum_price"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentRight="true"
            android:text="价格:"
            android:layout_marginLeft="20dp"
            android:layout_centerVertical="true"/>

        <TextView
            android:id="@+id/goods_number"
            android:layout_width="30dp"
            android:layout_height="30dp"
            android:textSize="10sp"
            android:gravity="center"
            android:textColor="@color/white"
            android:layout_marginLeft="-10dp"
            android:background="@drawable/circle_red_bg"
            android:layout_alignParentTop="true"
            android:layout_toEndOf="@+id/shop_car_image"
            android:text="7"
            android:layout_toRightOf="@+id/shop_car_image" />
    </RelativeLayout>
</LinearLayout>

左布局

<?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">

    <TextView
        android:id="@+id/left_text"
        android:layout_width="100dp"
        android:layout_height="50dp"
        android:textSize="16sp"
        android:gravity="center"
        android:textColor="@color/white"
        android:text="aa" />
</LinearLayout>

右布局

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:padding="10dp"
    android:layout_marginLeft="10dp"
    android:layout_marginRight="10dp"
    android:background="@drawable/search_edit_bg"
    android:orientation="horizontal">

    <ImageView
        android:id="@+id/image"
        android:layout_width="100dp"
        android:layout_height="wrap_content"
        android:adjustViewBounds="true"
        android:minHeight="50dp"
        android:layout_alignParentLeft="true"
        android:src="@mipmap/ic_launcher"/>

    <TextView
        android:id="@+id/text"
        android:layout_toRightOf="@+id/image"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="10dp"
        android:text="aa"
        android:padding="10dp"/>
    <TextView
        android:id="@+id/text_price"
        android:layout_toRightOf="@+id/image"
        android:layout_below="@+id/text"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="10dp"
        android:text="价格"
        android:padding="10dp"/>

    <com.bwei.gouwu.util.view.AddSubLayout
        android:id="@+id/add_sub_layout"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentRight="true"
        android:layout_alignParentBottom="true"
        android:layout_marginRight="20dp"
        android:layout_marginBottom="20dp">

    </com.bwei.gouwu.util.view.AddSubLayout>

</RelativeLayout>

加减按扭

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


    <TextView
        android:id="@+id/btn_add"
        android:layout_width="30dp"
        android:layout_height="30dp"
        android:background="@drawable/car_btn_bg"
        android:focusable="false"
        android:textSize="20sp"
        android:gravity="center"
        android:text="+" />

    <TextView
        android:id="@+id/text_number"
        android:layout_width="60dp"
        android:layout_height="30dp"
        android:gravity="center"
        android:textSize="14sp"
        android:text="1000" />

    <TextView
        android:id="@+id/btn_sub"
        android:layout_width="30dp"
        android:layout_height="30dp"
        android:textSize="20sp"
        android:focusable="false"
        android:gravity="center"
        android:background="@drawable/car_btn_bg"
        android:text="-" />
</LinearLayout>

主页面Activity

package com.bwei.gouwu;

import android.support.annotation.Nullable;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.support.v7.widget.LinearLayoutManager;
import android.support.v7.widget.RecyclerView;
import android.widget.TextView;
import android.widget.Toast;

import com.bwei.gouwu.adapter.LeftAdapter;
import com.bwei.gouwu.adapter.RightAdapter;
import com.bwei.gouwu.bean.Goods;
import com.bwei.gouwu.bean.Result;
import com.bwei.gouwu.bean.Shop;
import com.bwei.gouwu.core.DataCall;
import com.bwei.gouwu.presenter.CartPresenter;

import java.util.List;

public class MainActivity extends AppCompatActivity implements  DataCall<List<Shop>>{

    private TextView mSumPrice;
    private TextView mCount;
    private RecyclerView mLeftRecycler,mRightRecycler;

    private LeftAdapter mLeftAdapter;
    private RightAdapter mRightAdapter;

    private CartPresenter cartPresenter = new CartPresenter(this);

    @Override
    protected void onCreate(@Nullable Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        mSumPrice = findViewById(R.id.goods_sum_price);
        mCount = findViewById(R.id.goods_number);
        mLeftRecycler = findViewById(R.id.left_recycler);
        mRightRecycler = findViewById(R.id.right_recycler);

        mLeftRecycler.setLayoutManager(new LinearLayoutManager(this));
        mRightRecycler.setLayoutManager(new LinearLayoutManager(this));

        mLeftAdapter = new LeftAdapter();
        mLeftAdapter.setOnItemClickListenter(new LeftAdapter.OnItemClickListenter() {
            @Override
            public void onItemClick(Shop shop) {
                mRightAdapter.clearList();//清空数据
                mRightAdapter.addAll(shop.getList());
                mRightAdapter.notifyDataSetChanged();
            }
        });
        mLeftRecycler.setAdapter(mLeftAdapter);
        mRightAdapter = new RightAdapter();
        mRightAdapter.setOnNumListener(new RightAdapter.OnNumListener() {
            @Override
            public void onNum() {
                calculatePrice(mLeftAdapter.getList());
            }
        });
        mRightRecycler.setAdapter(mRightAdapter);

        cartPresenter.requestData();
    }

    @Override
    public void success(List<Shop> data) {

        calculatePrice(data);//计算价格和数量

        mLeftAdapter.addAll(data);//左边的添加类型

        //得到默认选中的shop,设置上颜色和背景
        Shop shop = data.get(1);
        shop.setTextColor(0xff000000);
        shop.setBackground(R.color.white);
        mRightAdapter.addAll(shop.getList());



        mLeftAdapter.notifyDataSetChanged();
        mRightAdapter.notifyDataSetChanged();
    }

    @Override
    public void fail(Result result) {
        Toast.makeText(this, result.getCode() + "   " + result.getMsg(), Toast.LENGTH_LONG).show();
    }

    /**
     * @author dingtao
     * @date 2018/12/18 7:01 PM
     * 计算总价格
     */
    private void calculatePrice(List<Shop> shopList){
        double totalPrice=0;
        int totalNum = 0;
        for (int i = 0; i < shopList.size(); i++) {//循环的商家
            Shop shop = shopList.get(i);
            for (int j = 0; j < shop.getList().size(); j++) {
                Goods goods = shop.getList().get(j);
                //计算价格
                totalPrice = totalPrice + goods.getNum() * goods.getPrice();
                totalNum+=goods.getNum();//计数
            }
        }
        mSumPrice.setText("价格:"+totalPrice);
        mCount.setText(""+totalNum);
    }
}

左边布局的适配器

package com.bwei.gouwu.adapter;

import android.support.annotation.NonNull;
import android.support.v7.widget.RecyclerView;
import android.view.View;
import android.view.ViewGroup;
import android.widget.TextView;

import com.bwei.gouwu.R;
import com.bwei.gouwu.bean.Shop;

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

public class LeftAdapter extends RecyclerView.Adapter<LeftAdapter.MyHolder> {

    private List<Shop> mList = new ArrayList<>();

    public void addAll(List<Shop> list){
        mList.addAll(list);
    }

    @NonNull
    @Override
    public MyHolder onCreateViewHolder(@NonNull ViewGroup viewGroup, int i) {
        View view = View.inflate(viewGroup.getContext(), R.layout.recycler_left_item,null);
        MyHolder myHolder = new MyHolder(view);
        return myHolder;
    }

    @Override
    public void onBindViewHolder(@NonNull final MyHolder myHolder, int i) {
        final Shop shop = mList.get(i);
        myHolder.text.setText(shop.getSellerName());
        myHolder.text.setBackgroundResource(shop.getBackground());
        myHolder.text.setTextColor(shop.getTextColor());
        myHolder.itemView.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {

                for (int j = 0; j <mList.size() ; j++) {
                    mList.get(j).setTextColor(0xffffffff);
                    mList.get(j).setBackground(R.color.grayblack);
                }
                shop.setBackground(R.color.white);
                shop.setTextColor(0xff000000);
                notifyDataSetChanged();
                onItemClickListenter.onItemClick(shop);//切换右边的列表
            }
        });
    }

    @Override
    public int getItemCount() {
        return mList.size();
    }

    public List<Shop> getList() {
        return mList;
    }

    class MyHolder extends RecyclerView.ViewHolder{

        TextView text;

        public MyHolder(@NonNull View itemView) {
            super(itemView);
            text = itemView.findViewById(R.id.left_text);
        }
    }

    private OnItemClickListenter onItemClickListenter;

    public void setOnItemClickListenter(OnItemClickListenter onItemClickListenter) {
        this.onItemClickListenter = onItemClickListenter;
    }

    public interface OnItemClickListenter{
        void onItemClick(Shop shop);
    }
}

右边布局的适配器

package com.bwei.gouwu.adapter;

import android.support.annotation.NonNull;
import android.support.v7.widget.RecyclerView;
import android.util.Log;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ImageView;
import android.widget.TextView;

import com.bumptech.glide.Glide;
import com.bwei.gouwu.R;
import com.bwei.gouwu.bean.Goods;
import com.bwei.gouwu.core.DTApplication;
import com.bwei.gouwu.util.view.AddSubLayout;

import java.util.ArrayList;
import java.util.List;
public class RightAdapter extends RecyclerView.Adapter<RightAdapter.ChildHolder> {

    private List<Goods> mList = new ArrayList<>();

    public void addAll(List<Goods> list) {
        mList.addAll(list);
    }

    @NonNull
    @Override
    public ChildHolder onCreateViewHolder(@NonNull ViewGroup viewGroup, int viewType) {
        View view = View.inflate(viewGroup.getContext(), R.layout.recycler_right_item, null);
        ChildHolder myHolder = new ChildHolder(view);
        return myHolder;
    }

    @Override
    public void onBindViewHolder(@NonNull ChildHolder childHolder, int position) {

        final Goods goods = mList.get(position);
        childHolder.text.setText(goods.getTitle());
        childHolder.price.setText("单价:" + goods.getPrice());//单价

        String imageurl = "https" + goods.getImages().split("https")[1];
        Log.i("dt", "imageUrl: " + imageurl);
        imageurl = imageurl.substring(0, imageurl.lastIndexOf(".jpg") + ".jpg".length());
        Glide.with(DTApplication.getInstance()).load(imageurl).into(childHolder.image);//加载图片

        childHolder.addSub.setCount(goods.getNum());//设置商品数量
        childHolder.addSub.setAddSubListener(new AddSubLayout.AddSubListener() {
            @Override
            public void addSub(int count) {
                goods.setNum(count);
                onNumListener.onNum();//计算价格
            }
        });
    }

    @Override
    public int getItemCount() {
        return mList.size();
    }

    public void clearList() {
        mList.clear();
    }


    class ChildHolder extends RecyclerView.ViewHolder {

        TextView text;
        TextView price;
        ImageView image;
        AddSubLayout addSub;

        public ChildHolder(@NonNull View itemView) {
            super(itemView);
            text = itemView.findViewById(R.id.text);
            price = itemView.findViewById(R.id.text_price);
            image = itemView.findViewById(R.id.image);
            addSub = itemView.findViewById(R.id.add_sub_layout);
        }
    }

    private OnNumListener onNumListener;

    public void setOnNumListener(OnNumListener onNumListener) {
        this.onNumListener = onNumListener;
    }

    public interface OnNumListener{
        void onNum();
    }
}

自定义view的

package com.bwei.gouwu.util.view;

import android.content.Context;
import android.util.AttributeSet;
import android.view.View;
import android.widget.LinearLayout;
import android.widget.TextView;
import android.widget.Toast;

import com.bwei.gouwu.R;

public class AddSubLayout extends LinearLayout implements View.OnClickListener {


    private TextView mAddBtn,mSubBtn;
    private TextView mNumText;
    private AddSubListener addSubListener;

    public AddSubLayout(Context context) {
        super(context);
        initView();
    }

    public AddSubLayout(Context context, AttributeSet attrs) {
        super(context, attrs);
        initView();
    }

    public AddSubLayout(Context context, AttributeSet attrs, int defStyleAttr) {
        super(context, attrs, defStyleAttr);
        initView();
    }


    private void initView(){
        //加载layout布局,第三个参数ViewGroup一定写成this
        View view = View.inflate(getContext(),R.layout.car_add_sub_layout,this);

        mAddBtn = view.findViewById(R.id.btn_add);
        mSubBtn = view.findViewById(R.id.btn_sub);
        mNumText = view.findViewById(R.id.text_number);
        mAddBtn.setOnClickListener(this);
        mSubBtn.setOnClickListener(this);

    }

    @Override
    protected void onLayout(boolean changed, int l, int t, int r, int b) {
        super.onLayout(changed, l, t, r, b);

        int width = r-l;//getWidth();
        int height = b-t;//getHeight();

    }

    @Override
    public void onClick(View v) {
        int number = Integer.parseInt(mNumText.getText().toString());

        switch (v.getId()){
            case R.id.btn_add:
                number++;
                mNumText.setText(number+"");
                break;
            case R.id.btn_sub:
                if (number==0){
                    Toast.makeText(getContext(),"数量不能小于0",Toast.LENGTH_LONG).show();
                    return;
                }
                number--;
                mNumText.setText(number+"");
                break;
        }
        if (addSubListener!=null){
            addSubListener.addSub(number);
        }
    }

    public void setCount(int count) {
        mNumText.setText(count+"");
    }

    public void setAddSubListener(AddSubListener addSubListener) {
        this.addSubListener = addSubListener;
    }

    public interface AddSubListener{
        void addSub(int count);
    }
}

M层

package com.bwei.gouwu.model;

import com.bwei.gouwu.bean.Result;
import com.bwei.gouwu.bean.Shop;
import com.google.gson.Gson;
import com.google.gson.reflect.TypeToken;

import java.lang.reflect.Type;
import java.util.List;

public class CartModel {

    public static Result goodsList() {
        String resultString = HttpUtils.get("http://www.zhaoapi.cn/product/getCarts?uid=71");
     
        try {
            //没网的情况下
            //Gson gson = new Gson();

            //Type type = new TypeToken<Result<List<Shop>>>() {
            //}.getType();

            //Result result = gson.fromJson(resultString, type);
              //请求网络的情况下
        Result<List<Goods>> result = new Result<>();
       result.setCode(0);
        List<Goods> list = new ArrayList<>();
        for (int i = 0; i < 30; i++) {
            Goods goods = new Goods();
            goods.setImages("");
            goods.setTitle("手机"+i);
            list.add(goods);
        }
        result.setData(list);

            return result;
        } catch (Exception e) {

        }
        Result result = new Result();
        result.setCode(-1);
        result.setMsg("数据解析异常");
        return result;
    }
}

Core包

P层基类

package com.bwei.gouwu.core;

import android.os.Handler;
import android.os.Looper;
import android.os.Message;

import com.bwei.gouwu.bean.Result;


public abstract class BasePresenter {

    DataCall dataCall;

    public BasePresenter(DataCall dataCall){
        this.dataCall = dataCall;
    }


    Handler mHandler = new Handler(Looper.getMainLooper()) {
        @Override
        public void handleMessage(Message msg) {

            Result result = (Result) msg.obj;
            if (result.getCode()==0){
                dataCall.success(result.getData());
            }else{
                dataCall.fail(result);
            }
        }
    };



    public void requestData(final Object...args){
        new Thread(new Runnable() {
            @Override
            public void run() {


                Message message = mHandler.obtainMessage();
                message.obj = getData(args);
                mHandler.sendMessage(message);

            }
        }).start();
    }

    protected abstract Result getData(Object...args);

    public void unBindCall(){
        this.dataCall = null;
    }
}

P层

package com.bwei.gouwu.presenter;


import com.bwei.gouwu.bean.Result;
import com.bwei.gouwu.core.BasePresenter;
import com.bwei.gouwu.core.DataCall;
import com.bwei.gouwu.model.CartModel;

public class CartPresenter extends BasePresenter {


    public CartPresenter(DataCall dataCall) {
        super(dataCall);
    }

    @Override
    protected Result getData(Object... args) {
        Result result = CartModel.goodsList();//调用网络请求获取数据
        return result;
    }
}

布局之间留下缝隙

可写可不写

package com.bwei.gouwu.util.recyclerview;

import android.graphics.Rect;
import android.support.v7.widget.RecyclerView;
import android.view.View;

public class SpacingItemDecoration extends RecyclerView.ItemDecoration {

    private int spacing;

    public SpacingItemDecoration(int spacing) {
        this.spacing = spacing;
    }

    @Override
    public void getItemOffsets(Rect outRect, View view, RecyclerView parent, RecyclerView.State state) {
        outRect.top = spacing / 2;
        outRect.bottom = spacing / 2;
        outRect.left = spacing / 2;
        outRect.right = spacing / 2;
    }
}

OKHttp工具类

package com.bwei.gouwu.util;

import android.util.Log;

import java.io.File;
import java.io.IOException;

import okhttp3.FormBody;
import okhttp3.MediaType;
import okhttp3.MultipartBody;
import okhttp3.OkHttpClient;
import okhttp3.Request;
import okhttp3.RequestBody;
import okhttp3.Response;

public class HttpUtils {
    public static String get(String urlString){

        OkHttpClient okHttpClient = new OkHttpClient();

        Request request = new Request.Builder().url(urlString).get().build();

        try {
            Response response = okHttpClient.newCall(request).execute();
            String result = response.body().string();
            Log.i("dt","请求结果:"+result);
            return result;
        } catch (IOException e) {
            e.printStackTrace();
        }
        return "";
    }

    public static String postForm(String url,String[] name,String[] value){

        OkHttpClient okHttpClient = new OkHttpClient();

        FormBody.Builder formBuild = new FormBody.Builder();
        for (int i = 0; i < name.length; i++) {
            formBuild.add(name[i],value[i]);
        }

        Request request = new Request.Builder().url(url).post(formBuild.build()).build();

        try {
            Response response = okHttpClient.newCall(request).execute();

            String result = response.body().string();
            Log.i("dt",result);
            return result;
        } catch (IOException e) {
            e.printStackTrace();
        }
        return "";
    }

    public static String postFile(String url,String[] name,String[] value,String fileParamName,File file){

        OkHttpClient okHttpClient = new OkHttpClient();

        MultipartBody.Builder requestBody = new MultipartBody.Builder().setType(MultipartBody.FORM);
        if(file != null){
            // MediaType.parse() 里面是上传的文件类型。
            RequestBody body = RequestBody.create(MediaType.parse("image/*"), file);
            String filename = file.getName();
            // 参数分别为: 文件参数名 ,文件名称 , RequestBody
            requestBody.addFormDataPart(fileParamName, "jpg", body);
        }
        if (name!=null) {
            for (int i = 0; i < name.length; i++) {
                requestBody.addFormDataPart(name[i], value[i]);
            }
        }

        Request request = new Request.Builder().url(url).post(requestBody.build()).build();

        try {
            Response response = okHttpClient.newCall(request).execute();
            if (response.code()==200) {
                return response.body().string();
            }
        } catch (IOException e) {
            e.printStackTrace();
        }
        return "";
    }

    public static String postJson(String url,String jsonString){

        OkHttpClient okHttpClient = new OkHttpClient();

        RequestBody requestBody = RequestBody.create(MediaType.parse("application/json"),jsonString);

        Request request = new Request.Builder().url(url).post(requestBody).build();

        try {
            Response response = okHttpClient.newCall(request).execute();

            return response.body().string();
        } catch (IOException e) {
            e.printStackTrace();
        }
        return "";
    }
}

Core包

定义请求成功接口*

package com.bwei.gouwu.core;

import com.bwei.gouwu.bean.Result;


public interface DataCall<T> {

    void success(T data);

    void fail(Result result);

}

Core包

Application层

package com.bwei.gouwu.core;

import android.app.Application;
import android.content.Context;
import android.content.SharedPreferences;

public class DTApplication extends Application {

    private static DTApplication instance;
    private SharedPreferences mSharedPreferences;

    @Override
    public void onCreate() {
        super.onCreate();
        instance = this;
        mSharedPreferences = getSharedPreferences("application",
                Context.MODE_PRIVATE);

    }

    public static DTApplication getInstance() {
        return instance;
    }

    public SharedPreferences getShare() {
        return mSharedPreferences;
    }	
}

bean层

商品
package com.bwei.gouwu.bean;

	import java.io.Serializable;
	
	public class Goods implements Serializable {
	
	
	
	    private double bargainPrice;
	    private String createtime;
	    private String detailUrl;
	    private String images;
	    private int num;
	    private int pid;
	    private double price;
	    private int pscid;
	    private int selected;
	    private int sellerid;
	    private String subhead;
	    private String title;
	    private int count=1;
	
	    public void setCount(int count) {
	        this.count = count;
	    }
	
	    public int getCount() {
	        return count;
	    }
	
	    public double getBargainPrice() {
	        return bargainPrice;
	    }
	
	    public void setBargainPrice(double bargainPrice) {
	        this.bargainPrice = bargainPrice;
	    }
	
	    public String getCreatetime() {
	        return createtime;
	    }
	
	    public void setCreatetime(String createtime) {
	        this.createtime = createtime;
	    }
	
	    public String getDetailUrl() {
	        return detailUrl;
	    }
	
	    public void setDetailUrl(String detailUrl) {
	        this.detailUrl = detailUrl;
	    }
	
	    public String getImages() {
	        return images;
	    }
	
	    public void setImages(String images) {
	        this.images = images;
	    }
	
	    public int getNum() {
	        return num;
	    }
	
	    public void setNum(int num) {
	        this.num = num;
	    }
	
	    public int getPid() {
	        return pid;
	    }
	
	    public void setPid(int pid) {
	        this.pid = pid;
	    }
	
	    public double getPrice() {
	        return price;
	    }
	
	    public void setPrice(double price) {
	        this.price = price;
	    }
	
	    public int getPscid() {
	        return pscid;
	    }
	
	    public void setPscid(int pscid) {
	        this.pscid = pscid;
	    }
	
	    public int getSelected() {
	        return selected;
	    }
	
	    public void setSelected(int selected) {
	        this.selected = selected;
	    }
	
	    public int getSellerid() {
	        return sellerid;
	    }
	
	    public void setSellerid(int sellerid) {
	        this.sellerid = sellerid;
	    }
	
	    public String getSubhead() {
	        return subhead;
	    }
	
	    public void setSubhead(String subhead) {
	        this.subhead = subhead;
	    }
	
	    public String getTitle() {
	        return title;
	    }
	
	    public void setTitle(String title) {
	        this.title = title;
	    }
	}

请求成功或者失败的结果码

Result

package com.bwei.gouwu.bean;


public class Result<T> {
    int code;
    String msg;
    T data;

    public int getCode() {
        return code;
    }

    public void setCode(int code) {
        this.code = code;
    }

    public String getMsg() {
        return msg;
    }

    public void setMsg(String msg) {
        this.msg = msg;
    }

    public T getData() {
        return data;
    }

    public void setData(T data) {
        this.data = data;
    }
}

左侧需要用的字段

Shop

	package com.bwei.gouwu.bean;
	
	import com.bwei.gouwu.R;
	
	import java.util.List;
	
	
	public class Shop {
	    List<Goods> list;
	    String sellerName;
	    String sellerid;
	    int textColor = 0xffffffff;
	    int background = R.color.grayblack;
	
	    boolean check;
	
	
	    public void setTextColor(int textColor) {
	        this.textColor = textColor;
	    }
	
	    public int getTextColor() {
	        return textColor;
	    }
	
	    public void setBackground(int background) {
	        this.background = background;
	    }
	
	    public int getBackground() {
	        return background;
	    }
	
	    public void setCheck(boolean check) {
	        this.check = check;
	    }
	
	    public boolean isCheck() {
	        return check;
	    }
	
	    public List<Goods> getList() {
	        return list;
	    }
	
	    public void setList(List<Goods> list) {
	        this.list = list;
	    }
	
	    public String getSellerName() {
	        return sellerName;
	    }
	
	    public void setSellerName(String sellerName) {
	        this.sellerName = sellerName;
	    }
	
	    public String getSellerid() {
	        return sellerid;
	    }
	
	    public void setSellerid(String sellerid) {
	        this.sellerid = sellerid;
	    }
	}

附加

colors.xml下
*颜色十六进制

<color name="white">#FFFFFF</color> <!-- 白色 -->
<color name="black">#000000</color> <!-- 黑色 -->
<color name="thinblue">#4186c9</color> <!-- 淡蓝色 -->
<color name="transparent">#00000000</color> <!-- 透明 -->
<color name="thingray">#dae8f5</color> <!-- 淡灰色 -->
<color name="thinwhite">#c6daf0</color> <!-- 浅白色 -->
<color name="gray">#ececec</color> <!-- 灰色 -->
<color name="grayblack">#999999</color> <!-- 灰黑色 -->
<color name="commonblack">#585858</color> <!-- 一般使用的黑色 -->
<color name="line_color">#d8d8d8</color> <!-- 单调的黑色 -->
<color name="radiocolor">#858a8e</color> <!-- 按钮颜色 -->
<color name="custom_gray">#656565</color> <!-- 通用灰 -->
<color name="list_black">#d0d0d0</color> <!-- 分隔线黑 -->
<color name="fontblack">#4f4f4f</color> <!-- 字体颜色 -->
<color name="fontgray">#5c5c5c</color> <!-- 字体灰 -->
<color name="graybg">#efefef</color>
<color name="gray_bg">#fbfbfb</color> <!-- 事件详情页信息背景 -->
<color name="blackgray">#E5E5E5</color> <!-- 深灰 -->
<color name="pure_gray">#f2f2f2</color> <!-- 纯色灰 -->
<color name="set_font_color">#686868</color>
<color name="set_title_color">#9a9a9a</color>
<color name="set_account_color">#57a6d8</color>
<color name="center_item_color">#575757</color>
<color name="titlebar_color">#4bc1d2</color>
<color name="set_line">#e4e4e4</color>
<color name="blue">#145fa6</color> <!-- 蓝色 -->
<color name="login_bg">#4cb3e8</color>
<color name="hintcolor">#cdcdcd</color>
<color name="tb_color">#f8f8f8</color>
<color name="center_checked_no_color">#909090</color>
<color name="msg_font_color">#555555</color>
<color name="mark_red">#ff4040</color> <!-- 红色 -->
<color name="gray_text">#666666</color>
<color name="topic_text_color">#767676</color>
<color name="filter_bg_color">#00FBFF</color>
<color name="gray_thin">#adadad</color>
<color name="topic_name_color">#6db3be</color>
<color name="topic_reply_color">#a9a9a9</color>
<color name="even_city_tui_color">#777678</color>
<color name="even_near_color">#f2f1f1</color>
<color name="even_near_small_color">#dfdfdf</color>
<color name="even_footer_color">#989696</color>
<color name="banner_join_press_color">#d4ecf1</color>
<color name="tb_text_color">#4f423a</color>
<color name="register_btn_color">#7ed321</color>
<color name="topic_reply_time_color">#9b9b9b</color>

<!-- 播的字体颜色 -->
<color name="bo_small_text_color">#CCCCCC</color>
<color name="bo_text_hint_color">#A4A4A4</color>
<color name="body_text_1">#ff000000</color>
<color name="body_text_2">#99000000</color>
<color name="body_text_disabled">#66000000</color>
<color name="body_text_1_inverse">#ffffffff</color>
<color name="body_text_2_inverse">#99ffffff</color>
<color name="accent_1">#ff29549f</color>
<color name="hyperlink">#ffff549f</color>
<color name="background_1">#ffffffff</color>
<color name="whats_on_separator">#4d000000</color>
<color name="all_track_color">#ff222222</color>
<color name="block_column_1">#ff0fabff</color>
<color name="block_column_2">#ffdf1831</color>
<color name="block_column_3">#ff009939</color>
<color name="umeng_fb_color_btn_pressed">#1495F7</color>
<color name="umeng_fb_color_btn_normal">#333333</color>
<color name="actionbar_background_start">#3A5FCD</color>
<color name="actionbar_background_end">#27408B</color>*
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值