在片段中膨胀自定义视图

时间:2017-07-26 11:39:20

标签: android android-layout android-fragments android-view android-custom-view

我需要在Fragment中实现自定义视图。到目前为止,我已经完成了将View类扩展为在画布上绘制并将其设置为google example之后的活动。

我想在片段中绘制画布,问题是我不知道如何给视图充气,因为它是对象但不是xml文件。

 return inflater.inflate(R.layout.article_view, container, false);

有人可以帮我理解并解决这个问题吗?

谢谢

1 个答案:

答案 0 :(得分:2)

这很简单:


    @Nullable
    @Override
    public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
        return new YourCustomView(container.getContext());
    }