Android examples for User Interface:Layout Inflater
get LayoutInflater from Context
//package com.java2s; import android.content.Context; import android.view.LayoutInflater; public class Main { public static LayoutInflater getInflater(Context context) { return (LayoutInflater) context .getSystemService(Context.LAYOUT_INFLATER_SERVICE); }/*from w w w . j a v a2 s . c o m*/ }