//在ContentView裡面 id 為YourLayout的RelativeLayout 裡 add一個 /res/layout/cont_inter.xml的view
//用By id 找ContentView裡面的RelativeLayout
RelativeLayout RelativeLayout = (RelativeLayout)findViewById(R.id.YourLayout);
inflater = getLayoutInflater();
//這邊我的view 是指定/res/layout/cant_inter.xml這個xml檔 請改成自己用的
View view = inflater.inflate(R.layout.cant_inter, null);
RelativeLayout.addView(view);
全站熱搜
留言列表