私は線形レイアウトを持っていて、それに FrameLayout を膨らませたいと思っています。どうすればできるか知っていますか?出来ますか?インフレに適したメソッドが見つかりませんというエラーが引き続き発生します
ありがとう
編集:自分自身に答える:
LinearLayout ll=(LinearLayout) findViewById(R.id.linear);
final LayoutInflater inflater = (LayoutInflater)getSystemService(Context.LAYOUT_INFLATER_SERVICE);
FrameLayout frml = (FrameLayout)inflater.inflate(R.layout.frame,null);
frml.setId(10101010);
frml.setBackgroundColor(Color.RED);
ll.addView(frml);