英文:
Custom TextClock in widget
问题
我尝试构建我的自定义TextClock并添加到小部件中。
和往常一样,我继承TextClock。当我在小部件中使用我的类时,小部件无法正常工作,但当我在活动中使用它时,没有任何问题。为什么会这样呢?
public class CustomTextClock extends TextClock {
public CustomTextClock(Context context) {
super(context);
}
public CustomTextClock(Context context, AttributeSet attrs) {
super(context, attrs);
}
public CustomTextClock(Context context, AttributeSet attrs, int defStyleAttr) {
super(context, attrs, defStyleAttr);
}
public CustomTextClock(Context context, AttributeSet attrs, int defStyleAttr, int defStyleRes) {
super(context, attrs, defStyleAttr, defStyleRes);
}
}
英文:
I try build my custom TextClock and add in widget.
As always, I inherit from TextClock. When I use my class in a widget, the widget does not work, and when I use it in activity, there are no problems. Why can it be so?
public class CustomTextClock extends TextClock {
public CustomTextClock(Context context) {
super(context);
}
public CustomTextClock(Context context, AttributeSet attrs) {
super(context, attrs);
}
public CustomTextClock(Context context, AttributeSet attrs, int defStyleAttr) {
super(context, attrs, defStyleAttr);
}
public CustomTextClock(Context context, AttributeSet attrs, int defStyleAttr, int defStyleRes) {
super(context, attrs, defStyleAttr, defStyleRes);
}
}
答案1
得分: 0
这个类的派生类在小部件中不受支持
英文:
Descendants of this class are not supported in widget
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论