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