更改主题 (setTheme) class android Utils "this" Fragment 错误
Change Theme (setTheme) class android Utils "this" error in Fragment
你好,我有 Utils class 和一个片段 class
片段 class:http://pastebin.com/uybNJPpe
实用工具class:http://pastebin.com/fpSq1wP2
在我的片段 class 中的 "this" 我收到此错误:
无法应用Utils中的onActivityCreateSetTheme(android.app.activity)
你能帮帮我吗?求求你了,谢谢你。
我投票给最好的!
通过在片段中使用 this
,您将获得片段实例。
但在您的 onActivityCreateSetTheme
方法中,参数是 Activity
。
因此,为了获得 Activity
实例,您应该在片段中传递 getActivity()
而不是使用 this
。
你好,我有 Utils class 和一个片段 class
片段 class:http://pastebin.com/uybNJPpe
实用工具class:http://pastebin.com/fpSq1wP2
在我的片段 class 中的 "this" 我收到此错误: 无法应用Utils中的onActivityCreateSetTheme(android.app.activity) 你能帮帮我吗?求求你了,谢谢你。 我投票给最好的!
通过在片段中使用 this
,您将获得片段实例。
但在您的 onActivityCreateSetTheme
方法中,参数是 Activity
。
因此,为了获得 Activity
实例,您应该在片段中传递 getActivity()
而不是使用 this
。