| | |
| | | |
| | | import android.content.Context; |
| | | import android.support.constraint.ConstraintLayout; |
| | | import android.support.constraint.Group; |
| | | import android.support.v7.widget.RecyclerView; |
| | | import android.view.View; |
| | | import android.widget.ImageView; |
| | |
| | | TextView mtv_staff; |
| | | TextView mtv_check_status; |
| | | ImageView img_status; |
| | | Group group_risk_warn; |
| | | TextView tv_risk_warn; |
| | | Group group_inspection_key_point; |
| | | TextView tv_inspection_key_point; |
| | | Group group_emergency_inspection; |
| | | TextView tv_emergency_inspection; |
| | | |
| | | public ConstraintLayout slideLayout; |
| | | |
| | | public TaskListHolder(View itemView, Context context, int viewType) { |
| | |
| | | img_status = itemView.findViewById(R.id.img_task_status); |
| | | slideLayout = itemView.findViewById(R.id.cl_item); |
| | | mtv_check_status = itemView.findViewById(R.id.tv_check_status); |
| | | group_risk_warn = itemView.findViewById(R.id.group_risk_warn); |
| | | tv_risk_warn = itemView.findViewById(R.id.tv_risk_warn); |
| | | group_inspection_key_point = itemView.findViewById(R.id.group_inspection_key_point); |
| | | tv_inspection_key_point = itemView.findViewById(R.id.tv_inspection_key_point); |
| | | group_emergency_inspection = itemView.findViewById(R.id.group_emergency_inspection); |
| | | tv_emergency_inspection = itemView.findViewById(R.id.tv_emergency_inspection); |
| | | } |
| | | } |
| | | |