CardScrollView片段

时间:2014-09-22 11:02:38

标签: google-glass google-gdk

我正在尝试从Custom Fragment的onCreateView方法返回CardScrollView自定义控件。片段是以编程方式创建的。

如果我不使用片段,而是直接用作活动布局,一切正常。但是当我从Custom Fragment的onCreateView方法返回它时,我所能看到的只是空白屏幕。

请帮我解决一下怎么做?

谢谢。

1 个答案:

答案 0 :(得分:1)

我修好了。在onCreateView中,我创建了CardScrollView的自定义视图,我还必须通过调用其activate方法来激活视图。然后它工作正常。代码如下:

public View onCreateView(LayoutInflater inflater, ViewGroup container,
        Bundle savedInstanceState) {

    CustomCardScrollView vu = new CustomCardScrollView(ctx);
    vu.activate();
    return vu;
}