如何在Sony Smarteyeglass中获取视图参考?

时间:2016-05-12 14:57:41

标签: android sony sony-smarteyeglass

我在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);

哪个不会返回对视图的引用。

1 个答案:

答案 0 :(得分:0)

不幸的是,您无法动态访问布局中的视图元素。因为一旦使用showLayout方法或sendToHostApp方法,布局就会静态发送到SmartEyeglass。

如果您想对视图元素进行任何详细更改,则需要再次发送完整的布局。

但是,如果您尝试在视图元素中对文本或图像内容进行更改,则可以使用sendText和sendImage方法。