キャンバスを使用してテキストを描画しようとしています。どこでもチェックアウトしましたが、これらの例はかなり複雑で、キャンバスにテキストを描くことはできましたが、この写真のようには表示されません。
このコードを見つけて動作しています。上の画像のように書くだけです。
Paint paint = new Paint();
paint.setColor(Color.BLACK);
paint.setTextSize(30);
paint.setAntiAlias(true);
canvas.drawText("There are 137 days, 9 hours 4 minutes and 36 seconds", 150,150, paint);