2 回答

TA貢獻(xiàn)96條經(jīng)驗(yàn) 獲得超96個(gè)贊
fragment是依附于activity的
fragment就是一個(gè)小activity
所以基本activity能做到的fragment都能做到,你只需要百度f(wàn)ragment的用法,看看fragment的生命周期,就像學(xué)activity那樣學(xué)就行了

TA貢獻(xiàn)9條經(jīng)驗(yàn) 獲得超2個(gè)贊
第一步:
在Acitivity中完成替換
FragmentTransaction ft = getSupportFragmentManager().beginTransaction();
ft.replace(R.layout.frament,new MyFragemnt()).commit();
第二步:
public class MyFragment extends Fragment {
? ?@Nullable
? ?@Override
? ?public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
? ? ? ?View view = View.inflate(context, R.layout.gradview, null); //注意這里的?R.layout.gradview? 就是你需要設(shè)置的GraidView布局?
return view;
? ?}
}
- 2 回答
- 0 關(guān)注
- 1630 瀏覽
添加回答
舉報(bào)