首先,在Fragment (本例中叫fragment2) 中以xml配置一個LinearLayout,在本例子中id設為f2_layout

覆蓋onCreateView

 

        v = inflater.inflate(R.layout.frament2, container, false);

        View pl = v.findViewById(R.id.f2_layout);

        ScrollView scroller = new ScrollView(pl.getContext());

        TextView t = new TextView(pl.getContext());

        scroller.addView(t);

        t.setText("test");

        ((LinearLayout)pl).addView(scroller);

        }

創作者介紹
創作者 jwjwo星象玩玩看 的頭像
u2b

jwjwo星象玩玩看

u2b 發表在 痞客邦 留言(0) 人氣( 16 )