美文网首页
android-碎片布局

android-碎片布局

作者: quanCN | 来源:发表于2019-05-07 15:20 被阅读0次

基本使用

  • 首先创建对应的碎片
    New => Fragment => Fragment(Blank)

    取消勾选include

    java代码如下,注意继承的Frament需要建议使用support-v4库中的Frament,可以更好的保持一致性,在fragment_test.xml写入布局
    public class TestFragment extends Fragment {
        public TestFragment() {
            // Required empty public constructor
        }
        @Override
        public View onCreateView(LayoutInflater inflater, ViewGroup container,Bundle savedInstanceState) {
            // 通过LayoutInflater的inflate()方法加载对应的布局
            return inflater.inflate(R.layout.fragment_test, container, false);
        }
    
    }
    
  • Activity添加碎片
    aicivity布局代码如下
    <?xml version="1.0" encoding="utf-8"?>
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:app="http://schemas.android.com/apk/res-auto"
        xmlns:tools="http://schemas.android.com/tools"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        tools:context=".MainActivity"
        android:orientation="vertical">
        <FrameLayout
            android:id="@+id/framLay"
            android:layout_width="match_parent"
            android:layout_height="match_parent">
            <fragment
                android:id="@+id/fragment"
                android:name="app.mrquan.test2019.FirstFragment"
                android:layout_width="match_parent"
                android:layout_height="match_parent" />
        </FrameLayout>
    </LinearLayout>
    
    声明一个FrameLayout布局是为了以后可以动态添加碎片
    注意:使用frament必须要加id!!!,否则会报错

动态加载

  • 创建待添加的碎片实例。
  • 获取到FragmentManager,在活动中可以直接调用getFragmentManager()方法得到。
  • 开启一个事务,通过调用beginTransaction()方法开启。
  • 向容器内加入碎片,一般使用replace()方法实现,需要传入容器的id和待添加的碎片实例。
  • 提交事务,调用commit()方法来完成。
    FragmentManager fragmentManager = getSupportFragmentManager();
    FragmentTransaction transaction = fragmentManager.beginTransaction();
    transaction.replace(R.id.framLay,new TestFragment());
    transaction.addToBackStack(null);//用于将一个事务添加到返回栈中,即返回键,回到上一碎片中
    transaction.commit();
    

碎片之间传递数据

  • 使用Fragment类的setArguments()方法
  • Bundle类设置传递的数据
    FragmentManager fragmentManager = getSupportFragmentManager();
    FragmentTransaction transaction = fragmentManager.beginTransaction();
    TestFragment testFragment = new TestFragment();
    Bundle bundle = new Bundle();
    bundle.putString("name","tom");
    testFragment.setArguments(bundle);    
    transaction.replace(R.id.framLay,testFragment);
    transaction.addToBackStack(null);//用于将一个事务添加到返回栈中,即返回键,回到上一碎片中
    transaction.commit();
    
  • 在Fragment类中使用getArguments()方法获取到Bundle对象,获取数据
    public View onCreateView(LayoutInflater inflater, ViewGroup container,Bundle savedInstanceState) {
            // Inflate the layout for this fragment
            Bundle bundle= getArguments();
            if (bundle != null){
                String name = bundle.getString("name");
                Toast.makeText(getContext(),name,Toast.LENGTH_LONG).show();
            }
            return inflater.inflate(R.layout.fragment_test, container, false);
    }
    

相关文章

  • android-碎片布局

    基本使用 首先创建对应的碎片New => Fragment => Fragment(Blank)取消勾选inclu...

  • Android基础07

    Fragment:碎片, 准备碎片的布局left right anthorRight 加载布局文件 其他类似 ac...

  • Android-布局优化

    过度绘制 在“开发者选项”中打开“调试 GPU 过度绘制”(对未默认开启硬件加速的界面需要同时打开“强制进行 GP...

  • Android-布局优化

    APP的优化是任重而道远的过程,必须在意每一个环节,否者当你想要优化的时候,发现到处都是坑,已经不知道填补哪里了,...

  • [code]_[fragment interact activi

    活动中获取碎片对象 只能获取活动绑定布局文件中的碎片

  • 动态添加碎片

    1. 创建新的碎片布局及类:: 2. 在主布局中需要添加碎片的地方放置一个容器布局: 3. 在代码中替换 Fram...

  • Android Studio 视图结构

    1、Tools->Android->Layout Inspector2、Tools->Android->Andro...

  • Android-自定义ViewGroup-增加layout_ma

    上一篇我们已经可以自定义一个简单的ViewGroup了Android-自定义简单的垂直布局的ViewGroup-参...

  • Android-布局优化问题

    在进行Android应用开发时,界面优化问题至关重要,它严重影响了应用的加载效率,我简单谈论一下Android开发...

  • Fragment的生命周期

    onAttach()为碎片建立关联的时候调用 onCreateView()为碎片创建视图(加载布局)时调用 onA...

网友评论

      本文标题:android-碎片布局

      本文链接:https://www.haomeiwen.com/subject/xgneoqtx.html