1

タイマーが動き始めると、「テキスト」が動いていることがあります..原因は何だと思いますか? 一致する親が満たされた相対レイアウト内にクロノメーターを作成します..

私が見逃している他の設定はありますか?重力も設定します:クロノメーターの中心

<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>
4

2 に答える 2

-1

これを試して

 <RelativeLayout
    android:id="@+id/relativeLayout1"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    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="110sp" />
</RelativeLayout>
于 2012-10-12T04:29:09.473 に答える