1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

【Android】時間を表示するView『TextClock』

Posted at

初めに

今回はデジタル時計で時間を表示させるためのView 『TextClock』というものうを見つけたので、それをご紹介します

TextClock

デジタル時計を表示させるには TextClockクラスか LayoutにTextClockタグを追加して用います。
TextClockはTextViewの子ViewなのでTextViewのメソッドを使用することができます。

TextClockのデジタル時計の表示形式は24時間表示か12時間表示のどちらかを定義することができます。
setFormat24Hourメソッドを使用すると24時間表示内容を定義することができます。
XML側で定義する場合は

 android:format24Hour="HH:mm:ss"

といった感じで定義することができます。

タイムゾーンを指定

TextClockではデジタル時計のタイムゾーンを指定することができます。
setTimeZoneメソッドを使用するとタイムゾーンの指定が可能になります。
XML側で定義する場合は

android:timeZone="GMT+900"

とすると日本の時刻(GMT+900)を設定することができます。

または

android:timeZone="Asia/Tokyo"

という設定することも可能です。

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?