在片段中扩充自定义视图



我需要在片段中实现自定义视图。到目前为止,我已经完成了扩展视图类以在画布上绘制并将其设置为活动,如谷歌示例所示。

我想在画布上以片段绘制,问题是我不知道如何膨胀视图,因为它是对象而不是 xml 文件。

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

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

谢谢

就这么简单:


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

相关内容

  • 没有找到相关文章

最新更新