如何从textclock获取值

时间:2016-04-19 08:36:17

标签: java android string android-studio

在我的应用程序中,我有一个显示当前小时的textclock,我希望当我单击一个按钮从textclock获取值并将其放入字符串变量时。我喜欢这样:

TextClock time = (TextClock) findViewById(R.id.horas);
horas = time.getText().toString();

在我的布局中,textclock是这样的:

<TextClock
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:id="@+id/horas"
    android:textSize="30dp"
    android:layout_below="@+id/space2"
    android:layout_centerHorizontal="true" />

但是这样会返回一个空值。

1 个答案:

答案 0 :(得分:-1)

这应该做:

time.getFormat12Hour();

或:

time.getFormat24Hour();

你将有一个工作时钟:

Image shows a working digital clock which matches system time