概述
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
最后
以上就是勤劳猎豹为你收集整理的Android Activity加载Fragment的一般简易方法的全部内容,希望文章能够帮你解决Android Activity加载Fragment的一般简易方法所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复