public View inflate (int resource, ViewGroup root, boolean attachToRoot) http://y-anz-m.blogspot.jp/2012/04/android-viewgroup.html https://www.bignerdranch.com/blog/understanding-androids-layoutinflater-inflate/ 第2引数は、 作成したViewをaddする予定の ViewGroup, 第3引数は、inflate した時点で root に addView するかどうか。 mRootLayout というメンバーを持っていたとして、下記6パターンある inflate(R.layout.hoge, mRootLayout, true) 返り値の View は、mRootLayout 基本的に