xuxiuxi
2017-04-06 ef4de775e7c3c89bd789024e2161d39b190870b7
VisitFace/DemoForBsk/app/src/main/java/cn/com/basic/face/fragment/PhoneCallFragment.java
@@ -12,21 +12,15 @@
import com.bsk.zhangbo.demoforbsk.R;
import cn.com.basic.face.adapter.CheckInFragment.CheckInLeftListViewAdapter;
import cn.com.basic.face.base.LeftRightBaseFragment;
import cn.com.basic.face.base.MainActivity;
import cn.com.basic.face.service.PhoneCallMng;
import cn.com.basic.face.util.Constant;
import cn.com.basic.face.widget.checkin.CheckInIntervieweeCell;
import cn.com.basic.face.widget.phonecall.PhoneCallLeftListView;
import cn.com.basic.face.widget.phonecall.PhoneCallRightIntervieweeCell;
import com.camnter.easyrecyclerview.widget.EasyRecyclerView;
import com.lidroid.xutils.ViewUtils;
import com.lidroid.xutils.view.annotation.ViewInject;
import com.lidroid.xutils.view.annotation.event.OnClick;
import java.util.ArrayList;
import java.util.List;
public class PhoneCallFragment extends LeftRightBaseFragment {
@@ -43,7 +37,7 @@
    @ViewInject(R.id.fragment_phone_call_left_sort_type_linear_layout)
    private LinearLayout fragment_phone_call_left_sort_type_linear_layout;
    @ViewInject(R.id.fragment_phone_call_right_interviewee_cell)
    private CheckInIntervieweeCell fragment_phone_call_right_interviewe_cell;
    private PhoneCallRightIntervieweeCell fragment_phone_call_right_interviewe_cell;
    @ViewInject(R.id.fragment_phone_call_left_list_view)
    private PhoneCallLeftListView fragment_phone_call_left_list_view;
    @ViewInject(R.id.fragment_phone_call_left_sort_by_name_radio_button)
@@ -61,7 +55,7 @@
    public View addRightLayout() {
        mViewRight = LayoutInflater.from(getActivity()).inflate(R.layout.fragment_phone_call_right,null);
        fragment_phone_call_right_interviewe_cell = (CheckInIntervieweeCell) mViewRight.findViewById(R.id.fragment_phone_call_right_interviewee_cell);
        fragment_phone_call_right_interviewe_cell = (PhoneCallRightIntervieweeCell) mViewRight.findViewById(R.id.fragment_phone_call_right_interviewee_cell);
        return mViewRight;
    }
@@ -102,4 +96,8 @@
        return fragment_phone_call_left_list_view;
    }
    public PhoneCallRightIntervieweeCell get_fragment_phone_call_right_interviewe_cell() {
        return fragment_phone_call_right_interviewe_cell;
    }
}