use of org.thoughtcrime.securesms.mediasend.v2.MediaCountIndicatorButton in project Signal-Android by WhisperSystems.
the class Camera1Fragment method presentHud.
@Override
public void presentHud(int selectedMediaCount) {
MediaCountIndicatorButton countButton = controlsContainer.findViewById(R.id.camera_review_button);
if (selectedMediaCount > 0) {
countButton.setVisibility(View.VISIBLE);
countButton.setCount(selectedMediaCount);
} else {
countButton.setVisibility(View.GONE);
}
}
use of org.thoughtcrime.securesms.mediasend.v2.MediaCountIndicatorButton in project Signal-Android by WhisperSystems.
the class CameraXFragment method presentHud.
@Override
public void presentHud(int selectedMediaCount) {
MediaCountIndicatorButton countButton = controlsContainer.findViewById(R.id.camera_review_button);
if (selectedMediaCount > 0) {
countButton.setVisibility(View.VISIBLE);
countButton.setCount(selectedMediaCount);
} else {
countButton.setVisibility(View.GONE);
}
}
use of org.thoughtcrime.securesms.mediasend.v2.MediaCountIndicatorButton in project Signal-Android by signalapp.
the class Camera1Fragment method presentHud.
@Override
public void presentHud(int selectedMediaCount) {
MediaCountIndicatorButton countButton = controlsContainer.findViewById(R.id.camera_review_button);
if (selectedMediaCount > 0) {
countButton.setVisibility(View.VISIBLE);
countButton.setCount(selectedMediaCount);
} else {
countButton.setVisibility(View.GONE);
}
}
use of org.thoughtcrime.securesms.mediasend.v2.MediaCountIndicatorButton in project Signal-Android by signalapp.
the class CameraXFragment method presentHud.
@Override
public void presentHud(int selectedMediaCount) {
MediaCountIndicatorButton countButton = controlsContainer.findViewById(R.id.camera_review_button);
if (selectedMediaCount > 0) {
countButton.setVisibility(View.VISIBLE);
countButton.setCount(selectedMediaCount);
} else {
countButton.setVisibility(View.GONE);
}
}
Aggregations