Вы можете сделать это, передав ссылку на свою активность в свой SurfaceView по классу приложения или общедоступным членом вашей деятельности.Например, мое решение:
Я создал свой вид поверхности в RelativeLayout и также добавил туда текстовый вид.
<RelativeLayout ....>
<com.package.my.MySurfaceView
android:....... />
<TextView
android:id="@+id/textId
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</RelativeLayout>
В MySurface:
TextView tv=(TextView)MyActivity.MyAct.findViewById(R.id.textId);
tv.offsetLeftAndRight(offsetX);
tv.offsetTopAndBottom(offsetY);
tv.setText("Your Text Here");