当计时器开始滴答作响时,“文本”有时正在移动..你认为是什么原因?我在一个相对布局内制作了计时器,并填充了匹配父级..
还有其他我错过的设置吗?我还设置了重力:天文台的中心
<RelativeLayout
android:id="@+id/relativeLayout1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/textView1"
android:layout_alignParentRight="true"
android:layout_below="@+id/textView1"
android:layout_marginBottom="10dp" >
<Chronometer
android:id="@+id/stopwatch"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:gravity="center_horizontal"
android:text="Chronometer"
android:textSize="110dp" />
</RelativeLayout>