当前位置: 移动技术网 > IT编程>移动开发>Android > Android连载7-动语添加碎片

Android连载7-动语添加碎片

2020年04月24日  | 移动技术网IT编程  | 我要评论

凡人修仙传下载txt免费下载,非诚勿扰20101212,亚瑟士 flytefoam

一、

1.我们设置主活动的框架,把主活动的屏幕分成两个碎片,各显示子活动的界面​。

 

<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" >

​

  <fragment

      android:id="@+id/left_fragment"

      android:name="com.example.fragmenttest.leftfragment"

      android:layout_width="0dp"

      android:layout_height="match_parent"

      android:layout_weight="1" />

 

  <fragment

      android:id="@+id/right_fragment"

      android:name="com.example.fragmenttest.rightfragment"

      android:layout_width="0dp"

      android:layout_height="match_parent"

      android:layout_weight="1" />

 

</linearlayout>

 

二、动态添加碎片

 

<?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:"#ffff00"

    android:orientation="vertical" >

   

    <textview

        android:layout_width="wrap_content"

        android:layout_height="wrap_content"

        android:layout_gravity="center_horizontal"

        android:textsize="20sp"

        android:text="this is another right franment"

        />

​

</linearlayout>

 

 

package com.example.fragmenttest;

​

import android.view.layoutinflater;

import android.view.viewgroup;

import android.os.bundle;

import android.view.view;

import android.app.fragment;

​

public class anotherrightfragment extends fragment {

 

  @override

  public view oncreateview(layoutinflater inflater,viewgroup container,bundle savedinstancestate) {

    view view = inflater.inflate(r.layout.annother_right_fragment,container,false);

    return view;

  }

​

}

 

二、源码:

1.项目地址

https://github.com/ruigege66/android/tree/master/uibestpractice

2.csdn:https://blog.csdn.net/weixin_44630050

3.博客园:https://www.cnblogs.com/ruigege0000/

4.欢迎关注微信公众号:傅里叶变换,个人公众号,仅用于学习交流,后台回复”礼包“,获取大数据学习资料

 

 

如对本文有疑问,请在下面进行留言讨论,广大热心网友会与你互动!! 点击进行留言回复

相关文章:

验证码:
移动技术网