안드로이드에서 기본 내장 동영상 플레이어를 호출 하는 방법으로
Intent intent = new Intent(Intent.ACTION_VIEW);
Uri uri = Uri.parse("rtmp://lectA.stream");
intent.setDataAndType(uri, "video/*");
startActivity(intent);
위에와 같은 방법으로 사용을 하였습니다.
이렇게 호출한 화면에서 "lectA.stream" (Title)을 임의로 바꾸고 싶은데 (아래 그림 참조)

방법을 찾지 못하여 질문을 드립니다.
Title를 변경할 수 있는 방법이 있을까요?