本文介绍了创建控件编程的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
据我了解,Android部件需要RemoteViews,而不是观,之类的活动。
我的问题:有没有办法完全避免XML,并建立整个布局用java code
替代问题:我能以某种方式检索查看,就像我会使用 findViewById(INT)
?例如:的LinearLayout的LinearLayout =(的LinearLayout)findViewById(R.id.xxx);
这样我可以访问的基地布局,并操纵不过我想
谢谢!
解决方案
No, sorry. RemoteViews
relies heavily on layout XML resources. While there is an addView()
method, it turns around and adds another RemoteViews
, and that puts you right back where you started from.
No, because there is no View
in your process. You configure the widgets via the various setter methods on RemoteViews
.
这篇关于创建控件编程的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!