zoukankan      html  css  js  c++  java
  • 使用fragment添加底部导航栏

    切记:fragment一定要放在framlayout中,不然不会被替换完全(就是切换之后原来的fagment可能还会存在)

    main.xml

    <LinearLayout 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:background="#ffffff"
    android:orientation="vertical">


    <FrameLayout
    android:id="@+id/content"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
       >
    <fragment
    android:name="com.liu25.asmallpark.Fragment.Fragment_1"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:layout="@layout/fragment_1" />
    </FrameLayout>

      <LinearLayout

        android:layout_width="match_parent"

        android:layout_height="wrap_content">
      <!--四个Button>

      <LinearLayout/>



    <LinearLayout/>

    fragment_1.xml(灰色背景)

    <?xml version="1.0" encoding="utf-8"?>
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#f3f3f3"
    android:orientation="vertical">
    </LinearLayout>

    fragment_2.xml(黑色背景)

    <?xml version="1.0" encoding="utf-8"?>
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#000000"
    android:orientation="vertical">
    </LinearLayout>

    main.java
    在Button点击事件里面:
      

    FragmentManager fragmentManager = getFragmentManager();//
    FragmentTransaction transaction = fragmentManager.beginTransaction();
    transaction.replace(R.id.content, fragment_1);
    transaction.commit();

    彩蛋:在fragment中获得Context:view.getContext()

     
  • 相关阅读:
    C语言集锦(一) C代码生成图片:BMP、PNG和JPEG
    Win32 OpenGL标准例子
    Tcc学习笔记(一) 开篇
    C语言集锦(二) 图像显示 Windows和Linux
    矢量图和Word:EPS,PDF,EMF和SVG
    firefox浏览器无法显示bootstrap图标问题总结
    现代字体栈
    jquery 插件大全
    meta 详解,html5 meta 标签日常设置
    工厂方法模式Factory Method(Java实现)
  • 原文地址:https://www.cnblogs.com/judes/p/5753171.html
Copyright © 2011-2022 走看看