private void updateCycleView(){
llBabyCycle.removeAllViews();
for(int i = 0; i<8; i++){
final int position = i;
LinearLayout itemView = (LinearLayout) LayoutInflater.from(this).inflate(R.layout.list_item_know_flow, null);
TextView flow_sequence = (TextView) itemView.findViewById(R.id.tv_flow_sequence);
TextView flow_title = (TextView) itemView.findViewById(R.id.tv_flow_title);
TextView flow_date = (TextView) itemView.findViewById(R.id.tv_flow_date);
ImageView flow_logo1 = (ImageView) itemView.findViewById(R.id.btn_flow_logo1);
ImageView flow_logo2 = (ImageView) itemView.findViewById(R.id.btn_flow_logo2);
flow_logo2.setVisibility(View.GONE);
llBabyCycle.addView(itemView);
}
}