Android:天文台秒表保持重叠

时间:2013-11-10 17:54:45

标签: android xml chronometer

我的秒表应用程序在自身内部保持重叠,我在linearLayout和Chronomemeter的后台添加了XML背景,但它一直保持

    <?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:padding="4dip"
android:gravity="center_horizontal"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#ff000000">

<Chronometer
    android:id="@+id/chronometer"
    android:layout_width="wrap_content"
    android:layout_height="0dip"
    android:layout_weight="0"
    android:background="#ff000000"
    android:format="@string/chronometer_initial_format"
    android:freezesText="false"
    android:paddingBottom="30dip"
    android:paddingTop="30dip" />

<Button android:id="@+id/start"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Start">
    <requestFocus />
</Button>

<Button android:id="@+id/stop"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Stop">
</Button>

<Button android:id="@+id/reset"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Reset">
</Button>

</LinearLayout>

任何想法?

1 个答案:

答案 0 :(得分:0)

结果我必须将<string name="chronometer_initial_format">Initial format:</string>放到样式xml而不是字符串xml