| | |
| | | import android.widget.Toast;
|
| | |
|
| | | import com.bsk.zhangbo.demoforbsk.R;
|
| | | import com.facebook.drawee.view.SimpleDraweeView;
|
| | | import com.lidroid.xutils.ViewUtils;
|
| | | import com.lidroid.xutils.view.annotation.ViewInject;
|
| | | import com.lidroid.xutils.view.annotation.event.OnClick;
|
| | |
| | | private TextView fragment_check_in_right_interviewee_cell_post;
|
| | | @ViewInject(R.id.fragment_check_in_right_interviewee_cell_photo)
|
| | | private ImageView fragment_check_in_right_interviewee_cell_photo;
|
| | | @ViewInject(R.id.fragment_check_in_right_interviewee_cell_photo_placeholder)
|
| | | private TextView fragment_check_in_right_interviewee_cell_photo_placeholder;
|
| | |
|
| | | private CheckInQueryItem item;
|
| | |
|
| | |
| | | fragment_check_in_right_interviewee_cell_dept.setText(item.getDeptName());
|
| | | fragment_check_in_right_interviewee_cell_post.setText(item.getPostName());
|
| | | fragment_check_in_right_interviewee_cell_photo.setImageURI(Uri.parse(AppApi.IMAGE_URL_BASE + item.getImagePath()));
|
| | | if (item.getImagePath() != null && !item.getImagePath().equals("")) {
|
| | | fragment_check_in_right_interviewee_cell_photo_placeholder.setVisibility(INVISIBLE);
|
| | | } else {
|
| | | fragment_check_in_right_interviewee_cell_photo_placeholder.setVisibility(VISIBLE);
|
| | | }
|
| | | }
|
| | |
|
| | | public CheckInQueryItem getInterviewee() {
|