0

我正在使用本教程制作模拟时钟: 制作自己的模拟时钟

我想使用的布局有点不同。我想制作一个 4x2 模拟时钟,左边是实际时钟,右边是一个带有一些文字的小条。我遇到的问题是时钟的指针停留在图像的中间,而不是在左侧。我的 XML 中的代码如下所示:

<?xml version="1.0" encoding="utf-8"?>
    <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:orientation="vertical" >

        <AnalogClock
            android:id="@+id/analogClock4x2countdown"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerInParent="true"
            android:dial="@drawable/hand_dial_4x2countdown"
            android:hand_hour="@drawable/hand_hour"
            android:hand_minute="@drawable/hand_minute" />

    </RelativeLayout>

它的外观示例。这也说明了问题所在。

我的问题是:我如何定位时钟的指针,以便它们在正确的位置?

4

1 回答 1

0

您可以通过仅在 xml 上的图形布局上拖动小部件来更改时钟的位置和大小,但在相对布局中,根据您的意愿拖动可能无法选择一种绝对布局作为 maun 布局

于 2013-07-15T05:47:50.457 回答