Android Activity加载Fragment的一般简易方法
首先写一个布局,布局里面以FrameLayout布局为佳,
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/fragment"
tools:context="com.example.demo.MainActivity" >
</FrameLayout>
然后在上层java代码中创建Fragment进而replace上面的这个FrameLayout:
package com.example.demo;
import android.app.Activity;
import android.app.Fragment;
import android.app.FragmentManager;
import android.app.FragmentTransaction;
import android.os.Bundle;
import android.view.LayoutInflater;
impo