TaskShipItemView.java
701 Bytes
package com.huaheng.mobilewms.view;
import android.content.Context;
import android.support.constraint.ConstraintLayout;
import android.view.LayoutInflater;
import android.widget.Button;
import com.huaheng.mobilewms.R;
public class TaskShipItemView extends ConstraintLayout {
//备货入按钮
final Button bt_beihuo;
//二次分拣按钮
final Button bt_second;
public TaskShipItemView(Context context){
super(context);
LayoutInflater.from(context).inflate(R.layout.task_ship_item_view, this);
// this.setBackgroundColor(Color.rgb(240,240,240));
bt_beihuo = findViewById(R.id.btBeihuo);
bt_second = findViewById(R.id.btSecond);
}
}