我在我的 Smarteyeglass 应用程序中使用布局渲染(而不是位图渲染)。如何获得对当前视图的引用?
我想根据代码中计算的值在我的布局中旋转一个 ImageView。所以我需要做这样的事情:
ViewGroup view = <GET THE VIEW HERE>
RelativeLayout relativeLayout = (RelativeLayout) RelativeLayout.inflate(context,
currentLayout, view);
relativeLayout.findViewById(R.id.my_view_object).setRotation(20);
但问题是我找不到获取对根视图的引用的方法。
我正在使用以下代码来显示我的布局:
Intent intent = new Intent(Control.Intents.CONTROL_PROCESS_LAYOUT_INTENT);
intent.putExtra(Control.Intents.EXTRA_DATA_XML_LAYOUT, R.layout.my_layout_id);
sendToHostApp(intent);
它不会返回对视图的引用。