xuxiuxi
2017-04-24 c34f11fb7407594f7c1eb69b11f84a45d13cfa1a
VisitFace/DemoForBsk/app/src/main/java/cn/com/basic/face/widget/phonecall/PhoneCallRightIntervieweeCell.java
@@ -21,14 +21,16 @@
public class PhoneCallRightIntervieweeCell extends LinearLayout {
    @ViewInject(R.id.fragment_check_in_right_interviewee_cell_name)
    private TextView fragment_check_in_right_interviewee_cell_name;
    @ViewInject(R.id.fragment_check_in_right_interviewee_cell_dept)
    private TextView fragment_check_in_right_interviewee_cell_dept;
    @ViewInject(R.id.fragment_check_in_right_interviewee_cell_post)
    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_phone_call_right_interviewee_cell_name)
    private TextView fragment_phone_call_right_interviewee_cell_name;
    @ViewInject(R.id.fragment_phone_call_right_interviewee_cell_dept)
    private TextView fragment_phone_call_right_interviewee_cell_dept;
    @ViewInject(R.id.fragment_phone_call_right_interviewee_cell_post)
    private TextView fragment_phone_call_right_interviewee_cell_post;
    @ViewInject(R.id.fragment_phone_call_right_interviewee_cell_photo)
    private ImageView fragment_phone_call_right_interviewee_cell_photo;
    @ViewInject(R.id.fragment_phone_call_right_interviewee_cell_photo_placeholder)
    private TextView fragment_phone_call_right_interviewee_cell_photo_placeholder;
    private PhoneCallQueryItem item = new PhoneCallQueryItem();
@@ -39,26 +41,32 @@
    public PhoneCallRightIntervieweeCell(Context context, AttributeSet attrs) {
        super(context, attrs);
        LayoutInflater inflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
        View view = inflater.inflate(R.layout.fragment_check_in_right_interviewee,this);
        View view = inflater.inflate(R.layout.fragment_phone_call_right_interviewee,this);
        ViewUtils.inject(this, view);
    }
    public void setIntervieweeInfo(final PhoneCallQueryItem item) {
        if (item == null) return;
        this.item = item;
        fragment_check_in_right_interviewee_cell_name.setText(item.getName());
        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()));
        fragment_phone_call_right_interviewee_cell_name.setText(item.getCallee());
        fragment_phone_call_right_interviewee_cell_dept.setText(item.getCalleeDept());
        fragment_phone_call_right_interviewee_cell_post.setText(item.getPostName());
        fragment_phone_call_right_interviewee_cell_photo.setImageURI(Uri.parse(AppApi.IMAGE_URL_BASE + item.getCalleeImage()));
        if (item.getCalleeImage() != null && !item.getCalleeImage().equals("")) {
            fragment_phone_call_right_interviewee_cell_photo_placeholder.setVisibility(INVISIBLE);
        } else {
            fragment_phone_call_right_interviewee_cell_photo_placeholder.setVisibility(VISIBLE);
        }
    }
    @OnClick(R.id.fragment_check_in_right_interviewee_cell_call_tel)
    public void fragment_check_in_right_interviewee_cell_call_tel_click(View view) {
    @OnClick(R.id.fragment_phone_call_right_interviewee_cell_call_tel)
    public void fragment_phone_call_right_interviewee_cell_call_tel_click(View view) {
        Toast.makeText(MainActivity.getInstance(), "正在呼叫座机"+item.getTel(), Toast.LENGTH_SHORT).show();
    }
    @OnClick(R.id.fragment_check_in_right_interviewee_cell_call_mobile)
    public void fragment_check_in_right_interviewee_cell_call_mobile_click(View view) {
    @OnClick(R.id.fragment_phone_call_right_interviewee_cell_call_mobile)
    public void fragment_phone_call_right_interviewee_cell_call_mobile_click(View view) {
        Toast.makeText(MainActivity.getInstance(), "正在呼叫手机"+item.getMobilePhone(), Toast.LENGTH_SHORT).show();
    }