我必须创建一个android世界时钟小部件。它应该将所选国家/地区的时间显示为模拟时钟小部件。
但我不知道如何更新小部件视图中的时间。
我尝试使用小部件配置活动。但它没有成功。请给我一些做点的想法
我的widget.xml文件包含以下内容: -
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/Widget"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_margin="8dip"
android:background="@drawable/myshape" >
<AnalogClock android:id="@+id/AnalogClock"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:dial="@drawable/widgetdial"
android:hand_hour="@drawable/widgethour"
android:hand_minute="@drawable/widgetminute"/>
</LinearLayout>
答案 0 :(得分:0)
您可以在bitbucket上查看我的代码:https://bitbucket.org/EmilYo/another_clock_widget 它是android(https://market.android.com/details?id=com.omgbutton.anotherclockwidget)的数字时钟小部件。