Call to getLayoutInflater() in places not in activity

后端 未结 6 1301
长情又很酷
长情又很酷 2020-11-29 16:18

What does need to be imported or how can I call the Layout inflater in places other than activity?

public static void method(Context context){
    //this doe         


        
6条回答
  •  眼角桃花
    2020-11-29 16:25

    Using context object you can get LayoutInflater from following code

    LayoutInflater inflater = (LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
    

提交回复
热议问题