Home | History | Annotate | Download | only in incallui

Lines Matching refs:rowId

109     public void setRowVisible(int rowId, boolean on) {
111 mConferenceCallList[rowId].setVisibility(View.VISIBLE);
113 mConferenceCallList[rowId].setVisibility(View.GONE);
122 public final void displayCallerInfoForConferenceRow(int rowId, String callerName,
125 final TextView nameTextView = (TextView) mConferenceCallList[rowId].findViewById(
127 final TextView numberTextView = (TextView) mConferenceCallList[rowId].findViewById(
129 final TextView numberTypeTextView = (TextView) mConferenceCallList[rowId].findViewById(
148 public final void setupEndButtonForRow(final int rowId) {
149 View endButton = mConferenceCallList[rowId].findViewById(R.id.conferenceCallerDisconnect);
153 getPresenter().endConferenceConnection(rowId);
159 public final void setCanSeparateButtonForRow(final int rowId, boolean canSeparate) {
160 final View separateButton = mConferenceCallList[rowId].findViewById(
167 getPresenter().separateConferenceConnection(rowId);