您好,登錄后才能下訂單哦!
Activity轉換為Fragment
目的:為了使Activity的局部可以動態替換
步驟:1) 將Activity的onCreate()方法中的代碼全部
移到Fragment的onCreateView()中
2) 將setContentView(R.layout.activity_main);
修改為: View layout = inflater.inflate(R.layout.fragment_tabs_pager, null);
3) 所有的 findViewById(android.R.id.tabhost);
修改為: layout.findViewById(android.R.id.tabhost);
4) 所有的this修改為:getActivity()
5) 在Activity的onCreate()方法中
調用setContentView(R.layout.activity_main);
布局為新建的一個,里面拖拽一個fragment
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。