我为索尼智能手表2制作了一些表盘,我得到了很多关于日期显示的报告"零"而不是真正的约会。
正如有人给出了这份报告: http://forum.xda-developers.com/showpost.php?p=53974927&postcount=49
我发现我忘记将此添加到我的指南中:
widgets:template="dd"
然后我试着删除它。它起作用http://forum.xda-developers.com/showpost.php?p=54004169&postcount=52
但是我需要将它拖到两位数以使其合适,所以我尝试了这个:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:widgets="http://schemas.android.com/apk/res-auto"
android:layout_width="215px"
android:layout_height="170px" >
<com.sonyericsson.extras.liveware.aef.widget.TimeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="177px"
android:layout_marginTop="73px"
android:layout_weight="0.5"
android:gravity="center" >
<com.sonyericsson.extras.liveware.aef.widget.TimeView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center"
android:includeFontPadding="false"
android:textColor="@android:color/white"
widgets:textSize="20px"
widgets:timeType="days_of_month_digit1" />
</com.sonyericsson.extras.liveware.aef.widget.TimeLayout>
</RelativeLayout>
并且表盘根本不起作用,手表不断自动重启
那么无论如何要解决这个问题吗?
由于
答案 0 :(得分:1)
是的,它对我来说也是一样的。我想SDK中有错误。我设法使用days_of_month
代替days_of_month_digit2
和days_of_month_digit1
来解决此问题。当然,你必须准备31个图形文件。